Método TState EventLoopScheduler.Schedule<(TState, Func<IScheduler, TState, IDisposable>)>
Agenda uma ação a ser executada.
Namespace:System.Reactive.Concurrency
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'Declaration
Public Function Schedule(Of TState) ( _
state As TState, _
action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As EventLoopScheduler
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.
Parâmetros de tipo
- TState
O tipo de argumento de estado.
Parâmetros
- state
Tipo: TState
O estado passado para a ação a ser executada.
- ação
Tipo: System.Func<IScheduler, TState, IDisposable>
A ação a ser executada.
Valor Retornado
Tipo: System.IDisposable
O objeto descartável usado para cancelar a ação agendada (melhor esforço).
Implementações
IScheduler.Schedule<TState>(TState, Func<IScheduler, TState, IDisposable>)