Partilhar via


Método TState EventLoopScheduler.Schedule<(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)>

Agenda uma ação a ser executada após dueTime.

Namespace:System.Reactive.Concurrency
Assembly: System.Reactive (em System.Reactive.dll)

Sintaxe

'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 EventLoopScheduler
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.

Parâmetros de tipo

  • TState
    O tipo de argumento de estado.

Parâmetros

  • state
    Tipo: TState
    Estado passado para a ação a ser executada.
  • Duetime
    Tipo: System.TimeSpan
    Tempo relativo após o qual executar a ação.

Valor Retornado

Tipo: System.IDisposable
Objeto descartável usado para cancelar a ação agendada (melhor esforço).

Implementações

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

Consulte Também

Referência

Classe EventLoopScheduler

Sobrecarga de agendamento

System.Reactive.Concurrency Namespace