public static async Task <StreamProcessorChain <TIn, TIn, TFactory> > Where <TOldIn, TIn, TFactory>(
            this StreamProcessorChain <TOldIn, TIn, TFactory> previousNode, Expression <Func <TIn, bool> > filterFunc, int scatterFactor = 1) where TFactory : IStreamProcessorAggregateFactory
        {
            var aggregateConfiguration = new StreamProcessorAggregateConfiguration(await previousNode.Aggregate.GetOutputStreamsWithSourceLocation(), scatterFactor);
            var processorAggregate     = await previousNode.Factory.CreateWhere(filterFunc, aggregateConfiguration);

            var processorChain = new StreamProcessorChain <TIn, TIn, TFactory>(processorAggregate, previousNode);

            return(processorChain);
        }
        public static async Task <StreamProcessorChain <TIn, TIn, TFactory> > Where <TIn, TFactory>(this ITransactionalStreamProvider <TIn> source, Expression <Func <TIn, bool> > filterFunc,
                                                                                                    TFactory factory, int scatterFactor = 1) where TFactory : IStreamProcessorAggregateFactory
        {
            var aggregateConfiguration = new StreamProcessorAggregateConfiguration(await source.GetOutputStreams(), scatterFactor);
            var processorAggregate     = await factory.CreateWhere(filterFunc, aggregateConfiguration);

            var processorChain = new StreamProcessorChainStart <TIn, TIn, TFactory>(processorAggregate, source, factory);

            return(processorChain);
        }
        public static async Task <StreamProcessorChain <TIn, TOut, TFactory> > SelectMany <TOldIn, TIn, TIntermediate, TOut, TFactory>(
            this StreamProcessorChain <TOldIn, TIn, TFactory> previousNode, Expression <Func <TIn, IEnumerable <TIntermediate> > > collectionSelectorFunc, Expression <Func <TIn, TIntermediate, TOut> > resultSelectorFunc, int scatterFactor = 1) where TFactory : IStreamProcessorAggregateFactory
        {
            var aggregateConfiguration = new StreamProcessorAggregateConfiguration(await previousNode.Aggregate.GetOutputStreamsWithSourceLocation(), scatterFactor);
            var processorAggregate     =
                await previousNode.Factory.CreateSelectMany(collectionSelectorFunc, resultSelectorFunc, aggregateConfiguration);

            var processorChain = new StreamProcessorChain <TIn, TOut, TFactory>(processorAggregate, previousNode);

            return(processorChain);
        }
        public static async Task <StreamProcessorChain <TIn, TOut, TFactory> > SelectMany <TIn, TIntermediate, TOut, TFactory>(
            this ITransactionalStreamProvider <TIn> source, Expression <Func <TIn, IEnumerable <TIntermediate> > > collectionSelectorFunc, Expression <Func <TIn, TIntermediate, TOut> > resultSelectorFunc,
            TFactory factory, int scatterFactor = 1) where TFactory : IStreamProcessorAggregateFactory
        {
            var aggregateConfiguration = new StreamProcessorAggregateConfiguration(await source.GetOutputStreams(), scatterFactor);
            var processorAggregate     = await factory.CreateSelectMany(collectionSelectorFunc, resultSelectorFunc, aggregateConfiguration);

            var processorChain = new StreamProcessorChainStart <TIn, TOut, TFactory>(processorAggregate, source, factory);

            return(processorChain);
        }