TestScheduler.ScheduleAbsolute<TState> Method (TState, Int64, Func<IScheduler, TState, IDisposable>)

Schedules an action to be executed at the specified virtual time.

Namespace:  Microsoft.Reactive.Testing
Assembly:  Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)

Syntax

'Declaration
Public Overrides Function ScheduleAbsolute(Of TState) ( _
    state As TState, _
    dueTime As Long, _
    action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As TestScheduler
Dim state As TState
Dim dueTime As Long
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,
    long dueTime,
    Func<IScheduler, TState, IDisposable> action
)
public:
generic<typename TState>
virtual IDisposable^ ScheduleAbsolute(
    TState state, 
    long long dueTime, 
    Func<IScheduler^, TState, IDisposable^>^ action
) override
abstract ScheduleAbsolute : 
        state:'TState * 
        dueTime:int64 * 
        action:Func<IScheduler, 'TState, IDisposable> -> IDisposable 
override ScheduleAbsolute : 
        state:'TState * 
        dueTime:int64 * 
        action:Func<IScheduler, 'TState, IDisposable> -> IDisposable 
JScript does not support generic types and methods.

Type Parameters

  • TState
    The type of state.

Parameters

  • state
    Type: TState
    The state passed to the action to be executed.
  • dueTime
    Type: System.Int64
    Absolute virtual time at which to execute the action.

Return Value

Type: System.IDisposable
The disposable object used to cancel the scheduled action.

See Also

Reference

TestScheduler Class

ScheduleAbsolute Overload

Microsoft.Reactive.Testing Namespace