Scheduler.Schedule < TState > 方法 (IScheduler, TState, DateTimeOffset, Action < TState, Action < TState, DateTimeOffset >>)
排程在每個 dueTime 以遞迴方式執行的動作。
Namespace:System.Reactive.Concurrency
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Schedule(Of TState) ( _
scheduler As IScheduler, _
state As TState, _
dueTime As DateTimeOffset, _
action As Action(Of TState, Action(Of TState, DateTimeOffset)) _
) As IDisposable
'Usage
Dim scheduler As IScheduler
Dim state As TState
Dim dueTime As DateTimeOffset
Dim action As Action(Of TState, Action(Of TState, DateTimeOffset))
Dim returnValue As IDisposable
returnValue = scheduler.Schedule(state, _
dueTime, action)
public static IDisposable Schedule<TState>(
this IScheduler scheduler,
TState state,
DateTimeOffset dueTime,
Action<TState, Action<TState, DateTimeOffset>> action
)
[ExtensionAttribute]
public:
generic<typename TState>
static IDisposable^ Schedule(
IScheduler^ scheduler,
TState state,
DateTimeOffset dueTime,
Action<TState, Action<TState, DateTimeOffset>^>^ action
)
static member Schedule :
scheduler:IScheduler *
state:'TState *
dueTime:DateTimeOffset *
action:Action<'TState, Action<'TState, DateTimeOffset>> -> IDisposable
JScript does not support generic types and methods.
類型參數
- TState
狀態引數類型。
參數
- scheduler
類型: System.Reactive.Concurrency.IScheduler
要對其執行遞迴動作的排程器。
- State
類型:TState
傳遞至要執行之動作的狀態。
- dueTime
類型: System.DateTimeOffset
第一次執行動作的絕對時間。
- 動作
類型:System.Action< TState、Action< TState、DateTimeOffset>>
要以遞迴方式執行的動作。
傳回值
類型: System.IDisposable
用來取消排程動作的可處置物件, (最佳做法) 。
使用注意事項
在 Visual Basic 和 C# 中,您可以在 IScheduler類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。