次の方法で共有


ActorGarbageCollectionSettings コンストラクター

定義

オーバーロード

ActorGarbageCollectionSettings()

入力引数の値を使用して、 ActorGarbageCollectionSettings クラスの新しいインスタンスを初期化します。

ActorGarbageCollectionSettings(Int64, Int64)

ActorGarbageCollectionSettings クラスの新しいインスタンスを初期化します。

ActorGarbageCollectionSettings()

入力引数の値を使用して、 ActorGarbageCollectionSettings クラスの新しいインスタンスを初期化します。

public ActorGarbageCollectionSettings ();
Public Sub New ()

適用対象

ActorGarbageCollectionSettings(Int64, Int64)

ActorGarbageCollectionSettings クラスの新しいインスタンスを初期化します。

public ActorGarbageCollectionSettings (long idleTimeoutInSeconds, long scanIntervalInSeconds);
new Microsoft.ServiceFabric.Actors.Runtime.ActorGarbageCollectionSettings : int64 * int64 -> Microsoft.ServiceFabric.Actors.Runtime.ActorGarbageCollectionSettings
Public Sub New (idleTimeoutInSeconds As Long, scanIntervalInSeconds As Long)

パラメーター

idleTimeoutInSeconds
Int64

使用中ではないアクターをガベージ コレクトする前に待機する時間間隔。

scanIntervalInSeconds
Int64

アクター ガベージ コレクション スキャンを実行する時間間隔。

例外

idleTimeoutInSeconds が 0 以下の場合。

scanIntervalInSeconds が 0 以下の場合。

idleTimeoutInSeconds が scanIntervalInSeconds より小さい場合。

適用対象