System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (7)
76IPartitionedStreamRecipient<TOutput> outputRecipient, bool preferStriping, QuerySettings settings);
88private QuerySettings _settings; // Settings collected from the query
93BinaryQueryOperator<TLeftInput, TRightInput, TOutput> op, QuerySettings settings,
142private QuerySettings _settings;
145bool preferStriping, QuerySettings settings)
176private QuerySettings _settings;
180PartitionedStream<TLeftInput, TLeftKey> leftPartitionedStream, bool preferStriping, QuerySettings settings)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
104PartitionedStream<TLeftInput, TLeftKey> inputStream, IPartitionedStreamRecipient<TOutput> recipient, bool preferStriping, QuerySettings settings)
148PartitionedStream<TLeftInput, TLeftKey> inputStream, IPartitionedStreamRecipient<TOutput> recipient, QuerySettings settings)
166PartitionedStream<TLeftInput, int> inputStream, IPartitionedStreamRecipient<TOutput> recipient, QuerySettings settings)
186internal override QueryResults<TOutput> Open(QuerySettings settings, bool preferStriping)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (5)
87PartitionedStream<TResult, TKey> inputStream, IPartitionedStreamRecipient<TResult> recipient, bool preferStriping, QuerySettings settings)
105private void WrapHelper<TKey>(PartitionedStream<TResult, TKey> inputStream, IPartitionedStreamRecipient<TResult> recipient, QuerySettings settings)
131internal override QueryResults<TResult> Open(QuerySettings settings, bool preferStriping)
340QuerySettings settings, bool preferStriping)
356QuerySettings settings, bool preferStriping)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (6)
54private UnaryQueryOperator(QueryOperator<TInput> child, bool outputOrdered, QuerySettings settings)
85bool preferStriping, QuerySettings settings);
97private QuerySettings _settings; // Settings collected from the query
100internal UnaryQueryOperatorResults(QueryResults<TInput> childQueryResults, UnaryQueryOperator<TInput, TOutput> op, QuerySettings settings, bool preferStriping)
146private QuerySettings _settings;
149IPartitionedStreamRecipient<TOutput> outputRecipient, UnaryQueryOperator<TInput, TOutput> op, bool preferStriping, QuerySettings settings)