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 以禁用定期信号。

适用于