protected override void Context()
 {
     _dummyDispatchCommits = new DummyDispatchCommits();
     _eventStore = Wireup
         .Init()
         .UsingInMemoryPersistence()
         .UsingAsynchronousDispatchScheduler(_dummyDispatchCommits)
         .Build();
 }
 protected override void Context()
 {
     _dummyDispatchCommits = new DummyDispatchCommits();
     _eventStore = Wireup
         .Init()
         .UsingInMemoryPersistence()
         .DoNotDispatchCommits()
         .Build();
 }
 protected override void Context()
 {
     _dummyDispatchCommits = new DummyDispatchCommits();
     _eventStore           = Wireup
                             .Init()
                             .UsingInMemoryPersistence()
                             .DoNotDispatchCommits()
                             .Build();
 }
Пример #4
0
 protected override void Context()
 {
     _dummyDispatchCommits = new DummyDispatchCommits();
     _eventStore           = Wireup
                             .Init()
                             .UsingInMemoryPersistence()
                             .UsingSynchronousDispatchScheduler()
                             .DispatchTo(_dummyDispatchCommits)
                             .Build();
 }
 protected override void Context()
 {
     _dummyDispatchCommits = new DummyDispatchCommits();
     _eventStore = Wireup
         .Init()
         .UsingInMemoryPersistence()
         .UsingSynchronousDispatchScheduler()
             .DispatchTo(_dummyDispatchCommits)
             .Startup(DispatcherSchedulerStartup.Explicit)
         .Build();
 }