Partager via


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

Planifie une action à exécuter sur le répartiteur.

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

Syntaxe

'Declaration
Public Function Schedule(Of TState) ( _
    state As TState, _
    action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As DispatcherScheduler
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.

Paramètres de type

  • TState
    Type d’argument state.

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).

Implémente

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

Voir aussi

Référence

DispatcherScheduler, classe

Surcharge de planification

Espace de noms System.Reactive.Concurrency