コード例 #1
0
ファイル: CommandHandlers.cs プロジェクト: LenFon/Bifrost
 public void Handle(ReplayAll command)
 {
     var eventStore = _repository.Get(EventStore.SystemEventStoreId);
     eventStore.ReplayAll();
 }
コード例 #2
0
ファイル: ReplaySubject.cs プロジェクト: skibitsky/urx
        private static (Action <IObserver <T> >, Action <T>, Action) CreateReplayAll()
        {
            var replay = new ReplayAll();

            return(replay.Replay, replay.Add, null);
        }
コード例 #3
0
ファイル: CommandHandlers.cs プロジェクト: csuffyy/Bifrost
        public void Handle(ReplayAll command)
        {
            var eventStore = _repository.Get(EventStore.SystemEventStoreId);

            eventStore.ReplayAll();
        }