using System; using System.Threading.Tasks; namespace LeanCloud.Storage.Internal { public interface IAVCurrentConfigController { /// /// Gets the current config async. /// /// The current config async. Task GetCurrentConfigAsync(); /// /// Sets the current config async. /// /// The current config async. /// Config. Task SetCurrentConfigAsync(AVConfig config); /// /// Clears the current config async. /// /// The current config async. Task ClearCurrentConfigAsync(); /// /// Clears the current config in memory async. /// /// The current config in memory async. Task ClearCurrentConfigInMemoryAsync(); } }