Freigeben über


IScheduler.Schedule<TState-Methode> (TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>)

Plant eine Aktion, die zu dueTime ausgeführt wird.

Namespace:System.Reactive.Concurrency
Versammlung: System.Reaktiv (in System.Reactive.dll)

Syntax

'Declaration
Function Schedule(Of TState) ( _
    state As TState, _
    dueTime As DateTimeOffset, _
    action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As IScheduler
Dim state As TState
Dim dueTime As DateTimeOffset
Dim action As Func(Of IScheduler, TState, IDisposable)
Dim returnValue As IDisposable

returnValue = instance.Schedule(state, _
    dueTime, action)
IDisposable Schedule<TState>(
    TState state,
    DateTimeOffset dueTime,
    Func<IScheduler, TState, IDisposable> action
)
generic<typename TState>
IDisposable^ Schedule(
    TState state, 
    DateTimeOffset dueTime, 
    Func<IScheduler^, TState, IDisposable^>^ action
)
abstract Schedule : 
        state:'TState * 
        dueTime:DateTimeOffset * 
        action:Func<IScheduler, 'TState, IDisposable> -> IDisposable 
JScript does not support generic types and methods.

Typparameter

  • TState
    Der Zustandsargumenttyp.

Parameter

  • state
    Typ: TState
    Der Zustand, der an die auszuführende Aktion übergeben wird.

Rückgabewert

Typ: System.IDisposable
Das einwegbare Objekt, das verwendet wird, um die geplante Aktion abzubrechen (best effort).

Weitere Informationen

Verweis

IScheduler-Schnittstelle

Überladung planen

System.Reactive.Concurrency-Namespace