Scheduler.Schedule Method (IScheduler, Action)

Schedules an action to be executed.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Schedule ( _
    scheduler As IScheduler, _
    action As Action _
) As IDisposable
'Usage
Dim scheduler As IScheduler
Dim action As Action
Dim returnValue As IDisposable

returnValue = scheduler.Schedule(action)
public static IDisposable Schedule(
    this IScheduler scheduler,
    Action action
)
[ExtensionAttribute]
public:
static IDisposable^ Schedule(
    IScheduler^ scheduler, 
    Action^ action
)
static member Schedule : 
        scheduler:IScheduler * 
        action:Action -> IDisposable 
public static function Schedule(
    scheduler : IScheduler, 
    action : Action
) : IDisposable

Parameters

Return Value

Type: System.IDisposable
The disposable object used to cancel the scheduled action (best effort).

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IScheduler. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Scheduler Class

Schedule Overload

System.Reactive.Concurrency Namespace