VirtualTimeScheduler<TAbsolute, TRelative>.ScheduleAbsolute<TState> Method (TState, TAbsolute, Func<IScheduler, TState, IDisposable>)

Schedules an action to be executed at dueTime.

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

Syntax

'Declaration
Public Overrides Function ScheduleAbsolute(Of TState) ( _
    state As TState, _
    dueTime As TAbsolute, _
    action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As VirtualTimeScheduler
Dim state As TState
Dim dueTime As TAbsolute
Dim action As Func(Of IScheduler, TState, IDisposable)
Dim returnValue As IDisposable

returnValue = instance.ScheduleAbsolute(state, _
    dueTime, action)
public override IDisposable ScheduleAbsolute<TState>(
    TState state,
    TAbsolute dueTime,
    Func<IScheduler, TState, IDisposable> action
)
public:
generic<typename TState>
virtual IDisposable^ ScheduleAbsolute(
    TState state, 
    TAbsolute dueTime, 
    Func<IScheduler^, TState, IDisposable^>^ action
) override
abstract ScheduleAbsolute : 
        state:'TState * 
        dueTime:'TAbsolute * 
        action:Func<IScheduler, 'TState, IDisposable> -> IDisposable 
override ScheduleAbsolute : 
        state:'TState * 
        dueTime:'TAbsolute * 
        action:Func<IScheduler, 'TState, IDisposable> -> 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.
  • dueTime
    Type: TAbsolute
    The absolute time at which to execute the action.

Return Value

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

See Also

Reference

VirtualTimeScheduler<TAbsolute, TRelative> Class

ScheduleAbsolute Overload

System.Reactive.Concurrency Namespace