ParallelEnumerable.WithDegreeOfParallelism<TSource> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クエリで使用する並列化の次数を設定します。 並列化の次数とは、クエリの処理において同時実行されるタスクの最大数です。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ WithDegreeOfParallelism(System::Linq::ParallelQuery<TSource> ^ source, int degreeOfParallelism);
public static System.Linq.ParallelQuery<TSource> WithDegreeOfParallelism<TSource> (this System.Linq.ParallelQuery<TSource> source, int degreeOfParallelism);
static member WithDegreeOfParallelism : System.Linq.ParallelQuery<'Source> * int -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function WithDegreeOfParallelism(Of TSource) (source As ParallelQuery(Of TSource), degreeOfParallelism As Integer) As ParallelQuery(Of TSource)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- ParallelQuery<TSource>
並列化の次数に対する制限を設定する ParallelQuery。
- degreeOfParallelism
- Int32
クエリで使用する並列化の次数。
戻り値
並列化の次数が制限されている source と同じクエリを表す ParallelQuery。
例外
source
が null 参照 (Visual Basic では Nothing) です。
degreeOfParallelism
が 1 より小さいか、または 512 を超えています。
WithDegreeOfParallelism は、クエリで複数回使用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET