1 type derived from Partitioner
mscorlib (1)
system\collections\concurrent\OrderablePartitioner.cs (1)
68public abstract class OrderablePartitioner<TSource> : Partitioner<TSource>
18 references to Partitioner
mscorlib (12)
system\collections\concurrent\OrderablePartitioner.cs (2)
126/// cref="System.Collections.Concurrent.Partitioner{TSource}.SupportsDynamicPartitions">SupportsDynamicPartitions</see> 206/// cref="System.Collections.Concurrent.Partitioner{TSource}.SupportsDynamicPartitions"/>
system\collections\concurrent\Partitioner.cs (3)
29/// Inheritors of <see cref="Partitioner{TSource}"/> must adhere to the following rules: 64/// true if the <see cref="Partitioner{TSource}"/> can create partitions dynamically as they are 65/// requested; false if the <see cref="Partitioner{TSource}"/> can only allocate
system\threading\Tasks\Parallel.cs (7)
2422Partitioner<TSource> source, 2481Partitioner<TSource> source, 2625Partitioner<TSource> source, 2798Partitioner<TSource> source, 2873Partitioner<TSource> source, 3049Partitioner<TSource> source, 3192Partitioner<TSource> source, // Might be OrderablePartitioner
System.Core (6)
System\Linq\Parallel\QueryOperators\PartitionerQueryOperator.cs (5)
33private Partitioner<TElement> m_partitioner; // The partitioner to use as data source. 35internal PartitionerQueryOperator(Partitioner<TElement> partitioner) 81internal static OrdinalIndexState GetOrdinalIndexState(Partitioner<TElement> partitioner) 124private Partitioner<TElement> m_partitioner; // The data source for the query 128internal PartitionerQueryOperatorResults(Partitioner<TElement> partitioner, QuerySettings settings)
System\Linq\ParallelEnumerable.cs (1)
121public static ParallelQuery<TSource> AsParallel<TSource>(this Partitioner<TSource> source)