ControlScheduler.Schedule<TState> – metoda (TState, Func<IScheduler, TState, IDisposable>)
Naplánuje akci, která má být provedena ve smyčce zpráv přidružené k ovládacímu prvku.
Obor názvů:System.Reactive.Concurrency
Sestavení: System.Reactive.Windows.Forms (v System.Reactive.Windows.Forms.dll)
Syntax
'Declaration
Public Function Schedule(Of TState) ( _
state As TState, _
action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As ControlScheduler
Dim state As TState
Dim action As Func(Of IScheduler, TState, IDisposable)
Dim returnValue As IDisposable
returnValue = instance.Schedule(state, _
action)
public IDisposable Schedule<TState>(
TState state,
Func<IScheduler, TState, IDisposable> action
)
public:
generic<typename TState>
virtual IDisposable^ Schedule(
TState state,
Func<IScheduler^, TState, IDisposable^>^ action
) sealed
abstract Schedule :
state:'TState *
action:Func<IScheduler, 'TState, IDisposable> -> IDisposable
override Schedule :
state:'TState *
action:Func<IScheduler, 'TState, IDisposable> -> IDisposable
JScript does not support generic types and methods.
Parametry typu
- TState
Typ argumentu stavu.
Parametry
- state
Typ: TState
Stav předaný akci, která se má provést.
- action
Typ: System.Func<IScheduler, TState, IDisposable>
Akce, která se má provést.
Návratová hodnota
Typ: System.IDisposable
Jednorázový objekt použitý ke zrušení naplánované akce (maximální úsilí).
Implementuje
IScheduler.Schedule<TState>(TState, Func<IScheduler, TState, IDisposable>)