public async Task Init()
 {
     this.remTableManager = await RemindersTableManager.GetManager(
         this.clusterOptions.ServiceId,
         this.clusterOptions.ClusterId,
         this.loggerFactory,
         options : this.storageOptions);
 }
Beispiel #2
0
        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);
        }
Beispiel #3
0
 public async Task Init(GlobalConfiguration config)
 {
     remTableManager = await RemindersTableManager.GetManager(config.ServiceId, config.ClusterId, config.DataConnectionStringForReminders, this.loggerFactory);
 }
Beispiel #4
0
 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);
 }
Beispiel #7
0
 public async Task Init(Guid serviceId, string deploymentId, string connectionString)
 {
     remTableManager = await RemindersTableManager.GetManager(serviceId, deploymentId, connectionString);
 }