Beispiel #1
0
 public StreamProcessorChain(IStreamProcessorAggregate <TIn, TOut> aggregate, IStreamProcessorChain <TIn> previous)
 {
     Aggregate = aggregate;
     Factory   = previous.Factory;
     _previous = previous;
 }
Beispiel #2
0
 public StreamProcessorChain(IStreamProcessorAggregate <TIn, TOut> aggregate, IStreamProcessorAggregateFactory factory)
 {
     Aggregate = aggregate;
     Factory   = factory;
     _previous = null;
 }