コード例 #1
0
ファイル: EventDispatcher.cs プロジェクト: rikbosch/estuite
 public EventDispatcher(
     IProvideEventStoreCloudTable table,
     IProvideCurrentPageIndexes provideCurrentPageIndexes,
     IUpdateCurrentPageIndexes updateCurrentPageIndexes,
     IStreamDispatcherConfiguration configuration)
 {
     _table = table;
     _provideCurrentPageIndexes = provideCurrentPageIndexes;
     _updateCurrentPageIndexes  = updateCurrentPageIndexes;
     _pageSize = configuration.PageSize;
 }
コード例 #2
0
 public EventStoreCloudTableProvider(CloudStorageAccount account, IStreamDispatcherConfiguration configuration)
 {
     _tableName   = configuration.TableName;
     _tableClient = account.CreateCloudTableClient();
 }