示例#1
0
 public EventDispatcher(
     IProvideEventStoreCloudTable table,
     IProvideCurrentPageIndexes provideCurrentPageIndexes,
     IUpdateCurrentPageIndexes updateCurrentPageIndexes,
     IStreamDispatcherConfiguration configuration)
 {
     _table = table;
     _provideCurrentPageIndexes = provideCurrentPageIndexes;
     _updateCurrentPageIndexes  = updateCurrentPageIndexes;
     _pageSize = configuration.PageSize;
 }
 public DispatchStreamRecoveryJobRepository(IProvideEventStoreCloudTable table)
 {
     _table = table;
 }
 public CurrentPageIndexRepository(IProvideEventStoreCloudTable table)
 {
     _table = table;
 }