Exemplo n.º 1
0
 public void Handle(ReplayAll command)
 {
     var eventStore = _repository.Get(EventStore.SystemEventStoreId);
     eventStore.ReplayAll();
 }
Exemplo n.º 2
0
        private static (Action <IObserver <T> >, Action <T>, Action) CreateReplayAll()
        {
            var replay = new ReplayAll();

            return(replay.Replay, replay.Add, null);
        }
Exemplo n.º 3
0
        public void Handle(ReplayAll command)
        {
            var eventStore = _repository.Get(EventStore.SystemEventStoreId);

            eventStore.ReplayAll();
        }