Ejemplo n.º 1
0
 public StreamProcessorChain(IStreamProcessorAggregate <TIn, TOut> aggregate, IStreamProcessorChain <TIn> previous)
 {
     Aggregate = aggregate;
     Factory   = previous.Factory;
     _previous = previous;
 }
Ejemplo n.º 2
0
 public StreamProcessorChainStart(IStreamProcessorAggregate <TIn, TOut> aggregate, ITransactionalStreamProviderAggregate <TIn> source, IStreamProcessorAggregateFactory factory) : base(aggregate, factory)
 {
     _source = source;
 }
Ejemplo n.º 3
0
 public StreamProcessorChain(IStreamProcessorAggregate <TIn, TOut> aggregate, IStreamProcessorAggregateFactory factory)
 {
     Aggregate = aggregate;
     Factory   = factory;
     _previous = null;
 }