Example #1
0
 public EventStorePublisher(
     IAppendOnlyStore store,
     EventStoreConfig config,
     ICheckpointWriter checkpoint,
     string streamName
     )
 {
     _store      = store;
     _config     = config;
     _checkpoint = checkpoint;
     _streamName = streamName;
 }
Example #2
0
        public EventStorePublisher(
			IAppendOnlyStore store,
			EventStoreConfig config,
			ICheckpointWriter checkpoint,
			string streamName
			)
        {
            _store = store;
            _config = config;
            _checkpoint = checkpoint;
            _streamName = streamName;
        }