Scheduler.TaskPool Property
Gets the scheduler that schedules work on the default Task Factory.
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared ReadOnly Property TaskPool As TaskPoolScheduler
Get
'Usage
Dim value As TaskPoolScheduler
value = Scheduler.TaskPool
public static TaskPoolScheduler TaskPool { get; }
public:
static property TaskPoolScheduler^ TaskPool {
TaskPoolScheduler^ get ();
}
static member TaskPool : TaskPoolScheduler
static function get TaskPool () : TaskPoolScheduler
Property Value
Type: System.Reactive.Concurrency.TaskPoolScheduler
The task pool scheduler.
Remarks
The TaskPool scheduler schedules actions to execute using the Task Factory from the Task Programming Library (TPL). This scheduler is ideal for short running operations.