public async Task Init() { this.remTableManager = await RemindersTableManager.GetManager( this.clusterOptions.ServiceId, this.clusterOptions.ClusterId, this.loggerFactory, options : this.storageOptions); }
public static async Task <AzureBasedReminderTable> GetAzureBasedReminderTable(Guid serviceId, string deploymentId, string connectionString) { var table = new AzureBasedReminderTable(); table.remTableManager = await RemindersTableManager.GetManager(serviceId, deploymentId, connectionString); return(table); }
public async Task Init(GlobalConfiguration config) { remTableManager = await RemindersTableManager.GetManager(config.ServiceId, config.ClusterId, config.DataConnectionStringForReminders, this.loggerFactory); }
public async Task Init(GlobalConfiguration config, TraceLogger logger) { this.logger = logger; remTableManager = await RemindersTableManager.GetManager(config.ServiceId, config.DeploymentId, config.DataConnectionStringForReminders); }
public async Task Init() { this.remTableManager = await RemindersTableManager.GetManager(this.siloOptions.ServiceId, this.siloOptions.ClusterId, this.storageOptions.DataConnectionStringForReminders, this.loggerFactory); }
public async Task Init() { this.remTableManager = await RemindersTableManager.GetManager( this.clusterOptions.ServiceId, this.clusterOptions.ClusterId, this.storageOptions.ConnectionString, this.storageOptions.TableName, this.loggerFactory); }
public async Task Init(Guid serviceId, string deploymentId, string connectionString) { remTableManager = await RemindersTableManager.GetManager(serviceId, deploymentId, connectionString); }