7 overrides of GivePartitionedStream
System.Linq.Parallel (7)
System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs (1)
202internal override void GivePartitionedStream(IPartitionedStreamRecipient<TOutput> recipient)
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (1)
103internal override void GivePartitionedStream(IPartitionedStreamRecipient<TOutput> recipient)
System\Linq\Parallel\QueryOperators\ListQueryResults.cs (1)
31internal override void GivePartitionedStream(IPartitionedStreamRecipient<T> recipient)
System\Linq\Parallel\QueryOperators\PartitionerQueryOperator.cs (1)
128internal override void GivePartitionedStream(IPartitionedStreamRecipient<TElement> recipient)
System\Linq\Parallel\QueryOperators\ScanQueryOperator.cs (1)
129internal override void GivePartitionedStream(IPartitionedStreamRecipient<TElement> recipient)
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
139internal override void GivePartitionedStream(IPartitionedStreamRecipient<TInputOutput> recipient)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
108internal override void GivePartitionedStream(IPartitionedStreamRecipient<TOutput> recipient)
8 references to GivePartitionedStream
System.Linq.Parallel (8)
System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs (2)
96leftChildResults.GivePartitionedStream(merger); 107rightChildResults.GivePartitionedStream(merger);
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
127_leftChildQueryResults.GivePartitionedStream(new LeftChildResultsRecipient(recipient, this, _preferStriping, _settings)); 157_results._rightChildQueryResults.GivePartitionedStream(rightChildRecipient);
System\Linq\Parallel\QueryOperators\QueryOperator.cs (2)
159queryResults.GivePartitionedStream(merger); // hook up the data flow between the operator-executors, starting from the merger. 237results.GivePartitionedStream(merger);
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
141_childQueryResults.GivePartitionedStream(new ChildResultsRecipient(recipient, _op, _settings));
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
130_childQueryResults.GivePartitionedStream(new ChildResultsRecipient(recipient, _op, _preferStriping, _settings));