1 write to _settings
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
104
_settings
= settings;
7 references to _settings
System.Linq.Parallel (7)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (7)
112
Debug.Assert(
_settings
.ExecutionMode != null &&
_settings
.DegreeOfParallelism != null);
113
if (
_settings
.ExecutionMode.Value == ParallelExecutionMode.Default && _op.LimitsParallelism)
116
IEnumerable<TOutput> opSequential = _op.AsSequentialQuery(
_settings
.CancellationState.ExternalCancellationToken);
118
opSequential,
_settings
.DegreeOfParallelism.Value, _preferStriping);
124
PartitionedStream<TOutput, int> result = ExchangeUtilities.PartitionDataSource(this,
_settings
.DegreeOfParallelism.Value, _preferStriping);
130
_childQueryResults.GivePartitionedStream(new ChildResultsRecipient(recipient, _op, _preferStriping,
_settings
));