/// <summary> /// Instance a configuration manager /// </summary> /// <param name="applicationId">Application Id</param> /// <param name="apiKey">Secret application key</param> public static AppconfiManager NewInstance( string applicationId, string apiKey) { var client = new AppconfiClient(applicationId, apiKey); var store = new ConfigurationStore(client); return(new AppconfiManager(store)); }
/// <summary> /// Instance a configuration manager /// </summary> /// <param name="appconfiUri">Base Appconfi server URI</param> /// <param name="applicationId">Application Id</param> /// <param name="apiKey">Secret application key</param> /// <param name="environmentName">Configuration environment</param> /// <param name="logger">Application logger</param> /// <param name="updateInterval">Interval for monitoring the configuration</param> public static AppconfiManager NewInstance( Uri appconfiUri, string applicationId, string apiKey, string environmentName, TimeSpan updateInterval, ILogger logger = null ) { if (updateInterval < TimeSpan.FromMinutes(1)) { throw new ArgumentOutOfRangeException("The update interval should be more than 1 minute"); } var client = new AppconfiClient(appconfiUri, applicationId, apiKey, environmentName); var store = new ConfigurationStore(client); return(new AppconfiManager(store, updateInterval, logger)); }
public ConfigurationStore(AppconfiClient client) { this.client = client; }