Beispiel #1
0
 public AsyncProjectionShard(string projectionOrShardName, IProjection projection, ISqlFragment[] eventFilters, DocumentStore store,
                             AsyncOptions options) : base(projectionOrShardName, eventFilters, store, options)
 {
     _projection = projection;
 }
Beispiel #2
0
 public ProjectionController(string shardName, IProjectionUpdater updater, AsyncOptions options)
 {
     _shardName = shardName;
     _updater   = updater;
     _options   = options ?? new AsyncOptions();
 }
Beispiel #3
0
 public AsyncProjectionShard(ShardName identifier, IProjection projection, ISqlFragment[] eventFilters, DocumentStore store,
                             AsyncOptions options) : base(identifier, eventFilters, store, options)
 {
     _projection = projection;
 }