Scheduler.Schedule<TState> Method (IScheduler, TState, Action<TState, Action<TState>>)

Schedules an action to be executed recursively.

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

Syntax

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

returnValue = scheduler.Schedule(state, _
    action)
public static IDisposable Schedule<TState>(
    this IScheduler scheduler,
    TState state,
    Action<TState, Action<TState>> action
)
[ExtensionAttribute]
public:
generic<typename TState>
static IDisposable^ Schedule(
    IScheduler^ scheduler, 
    TState state, 
    Action<TState, Action<TState>^>^ action
)
static member Schedule : 
        scheduler:IScheduler * 
        state:'TState * 
        action:Action<'TState, Action<'TState>> -> IDisposable 
JScript does not support generic types and methods.

Type Parameters

  • TState
    The state argument type.

Parameters

  • state
    Type: TState
    The state passed to the action to be executed.

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