ImmediateScheduler.Schedule<TState, metoda (TState> , TimeSpan, Func<IScheduler, TState, IDisposable>)
Planuje wykonanie akcji po dueTime.
Przestrzeń nazw:System.Reactive.Concurrency
Zestawu: System.Reaktywny (w System.Reactive.dll)
Składnia
'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 ImmediateScheduler
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.
Parametry typu
- TState
Typ argumentu stanu.
Parametry
- stan
Typ: TState
Stan przekazany do akcji do wykonania.
- dueTime
Typ: System.TimeSpan
Czas względny, po którym należy wykonać akcję.
- action
Typ: System.Func<IScheduler, TState, IDisposable>
Akcja do wykonania.
Wartość zwracana
Typ: System.IDisposable
Jednorazowy obiekt używany do anulowania zaplanowanej akcji (najlepsze wysiłki).
Implementuje
IScheduler.Schedule<TState(TState>, TimeSpan, Func<IScheduler, TState, IDisposable>)