IScheduler.Schedule < TState 方法 (TState > 、Func < IScheduler、TState、IDisposable >)
排程要執行的動作。
Namespace:System.Reactive.Concurrency
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'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.
類型參數
- TState
state 引數類型。
參數
- State
類型:TState
傳遞至要執行的動作的狀態。
- 動作
類型:System.Func<IScheduler、TState、IDisposable>
要執行的動作。
傳回值
類型: System.IDisposable
用來取消排程動作的可處置物件, () 。