The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

Scheduler.Immediate Property

Scheduler.Immediate Property

Gets the scheduler that schedules work immediately on the current thread.

Namespace:  System.Reactive.Concurrency
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public Shared ReadOnly Property Immediate As ImmediateScheduler
    Get
'Usage
Dim value As ImmediateScheduler

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

Property Value

Type: System.Reactive.Concurrency.ImmediateScheduler
The immediate scheduler.

Remarks

The Immediate scheduler starts the specified action immediately on the current thread.

See Also

Reference

Scheduler Class

System.Reactive.Concurrency Namespace