Scheduler.Schedule Method (IScheduler, TimeSpan, Action)

Schedules an action to be executed after dueTime.

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

Syntax

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

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

Parameters

  • dueTime
    Type: System.TimeSpan
    The relative time after which to execute the action.

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