System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (7)
80IPartitionedStreamRecipient<TOutput> outputRecipient, bool preferStriping, QuerySettings settings);
92private QuerySettings m_settings; // Settings collected from the query
97BinaryQueryOperator<TLeftInput, TRightInput, TOutput> op, QuerySettings settings,
143QuerySettings m_settings;
146bool preferStriping, QuerySettings settings)
177QuerySettings m_settings;
181PartitionedStream<TLeftInput, TLeftKey> leftPartitionedStream, bool preferStriping, QuerySettings settings)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
108PartitionedStream<TLeftInput, TLeftKey> inputStream, IPartitionedStreamRecipient<TOutput> recipient, bool preferStriping, QuerySettings settings)
152PartitionedStream<TLeftInput, TLeftKey> inputStream, IPartitionedStreamRecipient<TOutput> recipient, QuerySettings settings)
170PartitionedStream<TLeftInput, int> inputStream, IPartitionedStreamRecipient<TOutput> recipient, QuerySettings settings)
190internal override QueryResults<TOutput> Open(QuerySettings settings, bool preferStriping)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (5)
91PartitionedStream<TResult, TKey> inputStream, IPartitionedStreamRecipient<TResult> recipient, bool preferStriping, QuerySettings settings)
109private void WrapHelper<TKey>(PartitionedStream<TResult, TKey> inputStream, IPartitionedStreamRecipient<TResult> recipient, QuerySettings settings)
132internal override QueryResults<TResult> Open(QuerySettings settings, bool preferStriping)
339QuerySettings settings, bool preferStriping)
355QuerySettings settings, bool preferStriping)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (6)
59private UnaryQueryOperator(QueryOperator<TInput> child, bool outputOrdered, QuerySettings settings)
90bool preferStriping, QuerySettings settings);
102private QuerySettings m_settings; // Settings collected from the query
105internal UnaryQueryOperatorResults(QueryResults<TInput> childQueryResults, UnaryQueryOperator<TInput, TOutput> op, QuerySettings settings, bool preferStriping)
150QuerySettings m_settings;
153IPartitionedStreamRecipient<TOutput> outputRecipient, UnaryQueryOperator<TInput, TOutput> op, bool preferStriping, QuerySettings settings)