共用方式為


Scheduler.Schedule < TState > 方法 (IScheduler, TState, TimeSpan, Action < TState, Action < TState, TimeSpan >>)

排程在每個 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 TimeSpan, _
    action As Action(Of TState, Action(Of TState, TimeSpan)) _
) As IDisposable
'Usage
Dim scheduler As IScheduler
Dim state As TState
Dim dueTime As TimeSpan
Dim action As Action(Of TState, Action(Of TState, TimeSpan))
Dim returnValue As IDisposable

returnValue = scheduler.Schedule(state, _
    dueTime, action)
public static IDisposable Schedule<TState>(
    this IScheduler scheduler,
    TState state,
    TimeSpan dueTime,
    Action<TState, Action<TState, TimeSpan>> action
)
[ExtensionAttribute]
public:
generic<typename TState>
static IDisposable^ Schedule(
    IScheduler^ scheduler, 
    TState state, 
    TimeSpan dueTime, 
    Action<TState, Action<TState, TimeSpan>^>^ action
)
static member Schedule : 
        scheduler:IScheduler * 
        state:'TState * 
        dueTime:TimeSpan * 
        action:Action<'TState, Action<'TState, TimeSpan>> -> IDisposable 
JScript does not support generic types and methods.

類型參數

  • TState
    狀態引數類型。

參數

  • State
    類型:TState
    傳遞至要執行之動作的狀態。
  • dueTime
    類型: System.TimeSpan
    第一次執行動作的相對時間。

傳回值

類型: System.IDisposable
用來取消排程動作的可處置物件, (最佳做法) 。

使用注意事項

在 Visual Basic 和 C# 中,您可以在 IScheduler類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱

另請參閱

參考

Scheduler 類別

排程多載

System.Reactive.Concurrency 命名空間