Ejemplo n.º 1
0
        internal StageOutput <R, T> NewOutput <R, T>(ITimeContext <T> context, Expression <Func <R, int> > partitionedBy)
            where T : Time <T>
        {
            inputsSealed = true;

            var result = new StageOutput <R, T>(this, context, partitionedBy);

            return(result);
        }
Ejemplo n.º 2
0
 internal Stream(StageOutput <TRecord, TTime> stageOutput)
 {
     this.StageOutput = stageOutput;
 }