Ejemplo n.º 1
0
 public AzureBlobAsyncAppenderTest()
 {
     this.connection = "";
     this.container  = "testing";
     this.appender   = new AzureAsyncAppender(connection, container, new AzureBlobAppenderOptions()
     {
         NamingPolicy = new NameDashGuidNaming("es")
     });
     this.eventstore = new EventStoreAsync(appender);
 }
Ejemplo n.º 2
0
 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);
 }