ImmediateScheduler.Schedule<TState> Method (TState, Func<IScheduler, TState, IDisposable>)
Schedules an action to be executed.
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive (in System.Reactive.dll)
public IDisposable Schedule<TState>(
TState state,
Func<IScheduler, TState, IDisposable> action
)
Type Parameters
- TState
The state argument type.
Parameters
- state
- Type: TState
The state passed to the action to be executed.
- action
- Type: System.Func<IScheduler, TState, IDisposable>
The action to be executed.
Return Value
Type: System.IDisposableThe disposable object used to cancel the scheduled action (best effort).