共用方式為


GrainTimerCreationOptions 建構函式

定義

多載

GrainTimerCreationOptions()
已淘汰.

建立粒紋定時器的選項。

GrainTimerCreationOptions(TimeSpan, TimeSpan)

初始化新的 GrainTimerCreationOptions 實例。

GrainTimerCreationOptions()

警告

Constructors of types with required members are not supported in this version of your compiler.

建立粒紋定時器的選項。

[System.Obsolete("Constructors of types with required members are not supported in this version of your compiler.", true)]
public GrainTimerCreationOptions ();
Public Sub New ()
屬性

適用於

GrainTimerCreationOptions(TimeSpan, TimeSpan)

初始化新的 GrainTimerCreationOptions 實例。

public GrainTimerCreationOptions (TimeSpan dueTime, TimeSpan period);
new Orleans.Runtime.GrainTimerCreationOptions : TimeSpan * TimeSpan -> Orleans.Runtime.GrainTimerCreationOptions
Public Sub New (dueTime As TimeSpan, period As TimeSpan)

參數

dueTime
TimeSpan

TimeSpan,表示在建構 IGrainTimer 時叫用回呼方法之前所要延遲的時間量。 指定 InfiniteTimeSpan 以防止定時器啟動。 指定 Zero 立即啟動定時器。

period
TimeSpan

建構 IGrainTimer 時所指定的回呼方法調用之間的時間間隔。 指定 InfiniteTimeSpan 以停用定期訊號。

適用於