protected override ISingleStream <Correlated <TIn> > CreateOutputStream(FixCorrelatedSingleArgs <TIn> args) { IPushObservable <Correlated <TIn> > obs = args.Stream.Observable.Map(i => new Correlated <TIn> { Row = args.Fixer.Fix(i.Row), CorrelationKeys = i.CorrelationKeys }); return(base.CreateSingleStream(obs)); }
public FixCorrelatedSingleStreamNode(string name, FixCorrelatedSingleArgs <TIn> args) : base(name, args) { }