Freigeben über


VirtualTimeSchedulerBase<TAbsolute, TRelative>. Schedule<TState-Methode> (TState, TimeSpan, Func<IScheduler, TState, IDisposable>)

Plant die Ausführung einer Aktion nach dueTime.

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

Syntax

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

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

Typparameter

  • TState
    Der State-Argumenttyp.

Parameter

  • state
    Typ: TState
    Zustand, der an die auszuführende Aktion übergeben wird.
  • dueTime
    Typ: System.TimeSpan
    Relative Zeit, nach der die Aktion ausgeführt werden soll.

Rückgabewert

Typ: System.IDisposable
Das IDisposable-Objekt , das zum Abbrechen der geplanten Aktion verwendet wird (bestmöglicher Aufwand).

Implementiert

IScheduler.Schedule<TState>(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)

Weitere Informationen

Verweis

VirtualTimeSchedulerBase<TAbsolute, TRelative-Klasse>

Zeitplanüberladung

System.Reactive.Concurrency-Namespace