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

IGrainTimer が構築されたときに指定されたコールバック メソッドを呼び出すまでの遅延時間を表す TimeSpan。 タイマーが開始されないようにするには、InfiniteTimeSpan を指定します。 タイマーをすぐに開始する Zero を指定します。

period
TimeSpan

IGrainTimer が構築されたときに指定されたコールバック メソッドの呼び出し間の時間間隔。 定期的なシグナリングを無効にする InfiniteTimeSpan を指定します。

適用対象