Inheritance: IAppendOnlyAsync
 public AzureBlobAsyncAppenderTest()
 {
     this.connection = "";
     this.container = "testing";
     this.appender = new AzureAsyncAppender(connection, container, new AzureBlobAppenderOptions() {NamingPolicy = new NameDashGuidNaming("es")});
     this.eventstore = new EventStoreAsync(appender);
 }
 public PerformanceRun()
 {
     Console.WriteLine("");
     Console.Write("Azure Connection string:");
     this.connection = Console.ReadLine();
     Console.WriteLine("");
     Console.Write("Azure container:");
     this.container = Console.ReadLine();
     this.appender = new AzureAsyncAppender(connection, container, new AzureBlobAppenderOptions() { NamingPolicy = new NameDashGuidNaming("es") });
     this.eventstore = new EventStoreAsync(appender);
 }
 public Task Initialize()
 {
     var appender = new AzureAsyncAppender(this.storage, this.container, this.options);
     return appender.Initialize();
 }
        public Task Initialize()
        {
            var appender = new AzureAsyncAppender(this.storage, this.container, this.options);

            return(appender.Initialize());
        }