Partager via


IScheduler.Schedule<TState> , méthode (TState, Func<IScheduler, TState, IDisposable>)

Planifie une action à exécuter.

Espace de noms :System.Reactive.Concurrency
Assemblée: System.Reactive (en System.Reactive.dll)

Syntaxe

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

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

Paramètres de type

  • TState
    Type d’argument d’état.

Paramètres

  • state
    Type : TState
    État passé à l’action à exécuter.

Valeur de retour

Type : System.IDisposable
Objet jetable utilisé pour annuler l’action planifiée (meilleur effort).

Voir aussi

Référence

IScheduler Interface

Surcharge de planification

Espace de noms System.Reactive.Concurrency