ImmediateScheduler.Schedule<TState> メソッド (TState、TimeSpan、Func<IScheduler、TState、IDisposable>)
dueTime の後に実行されるアクションをスケジュールします。
Namespace:System.Reactive.Concurrency
アセンブリ: System.Reactive (System.Reactive.dll)
構文
'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 ImmediateScheduler
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.
型パラメーター
- TState
state 引数の型。
パラメーター
- state
型: TState
実行するアクションに渡される状態。
- Duetime
種類: System.TimeSpan
アクションを実行する相対時間。
- action
種類: System.Func<IScheduler、TState、 IDisposable>
実行するアクション。
戻り値
種類: System.IDisposable
スケジュールされたアクションを取り消すために使用される破棄可能なオブジェクト (ベスト エフォート)。
実装
IScheduler.Schedule<TState>(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)