Scheduler.ThreadPool プロパティ

ThreadPool での作業をスケジュールするスケジューラを取得します。

Namespace:System.Reactive.Concurrency
アセンブリ: System.Reactive (System.Reactive.dll)

構文

'Declaration
Public Shared ReadOnly Property ThreadPool As ThreadPoolScheduler
    Get
'Usage
Dim value As ThreadPoolScheduler

value = Scheduler.ThreadPool
public static ThreadPoolScheduler ThreadPool { get; }
public:
static property ThreadPoolScheduler^ ThreadPool {
    ThreadPoolScheduler^ get ();
}
static member ThreadPool : ThreadPoolScheduler
static function get ThreadPool () : ThreadPoolScheduler

プロパティ値

種類: System.Reactive.Concurrency.ThreadPoolScheduler
スレッド プール スケジューラ。

解説

ThreadPool スケジューラは、.NET スレッド プールで実行されるアクションをスケジュールします。 このスケジューラは、実行時間の短い操作に最適です。

このコード例では、Generate 演算子を使用して、1000 未満の完全な 2 乗である整数のシーケンスを生成します。 generate 演算子に関連付けられている処理は、ThreadPool スケジューラを使用して .NET スレッド プールで実行するようにスケジュールされます。

using System;
using System.Reactive.Linq;
using System.Reactive.Concurrency;

namespace Example
{
  class Program
  {
    static void Main()
    {
      //*********************************************************************************************//
      //*** Generate a sequence of integers which are the perfect squares that are less than 100  ***//
      //*********************************************************************************************//

      var obs = Observable.Generate(1,                      // Initial state value
                                    x => x * x < 1000,      // The termination condition. Terminate generation when false (the integer squared is not less than 1000)
                                    x => ++x,               // Iteration step function updates the state and returns the new state. In this case state is incremented by 1 
                                    x => x * x,             // Selector function determines the next resulting value in the sequence. The state of type in is squared.
                                    Scheduler.ThreadPool);  // The ThreadPool scheduler runs the generation on a thread pool thread instead of the main thread.

      using (IDisposable handle = obs.Subscribe(x => Console.WriteLine(x)))
      {
        Console.WriteLine("Press ENTER to exit...\n");
        Console.ReadLine();
      }
    }
  }
}

次の出力は、コード例の実行を示しています。

Press ENTER to exit...

1
4
9
16
25
36
49
64
81
100
121
144
169
196
225
256
289
324
361
400
441
484
529
576
625
676
729
784
841
900
961

参照

リファレンス

Scheduler クラス

System.Reactive.Concurrency 名前空間