Application.SubscriptionQuantumLimit Property
論理 (クォンタム) クロックが実際のクロックに対してどのくらい遅れるとサブスクリプション ルールの実行がスキップされるかを示す値を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Property SubscriptionQuantumLimit As Integer
public int SubscriptionQuantumLimit { get; set; }
public:
property int SubscriptionQuantumLimit {
int get ();
void set (int value);
}
/** @property */
public int get_SubscriptionQuantumLimit ()
/** @property */
public void set_SubscriptionQuantumLimit (int value)
public function get SubscriptionQuantumLimit () : int
public function set SubscriptionQuantumLimit (value : int)
プロパティ値
クォンタム クロックの間隔の数を示す Int32 です。
解説
更新されたテキスト :2005 年 12 月 5 日
Notification Services では、クォンタム クロックを使用してルールの実行スケジュールを設定します。アプリケーションを実行している Notification Services エンジンがダウンしたり、ワークロードが原因でアプリケーションの実行が遅れたりすると、クォンタム クロックが実際のクロックよりも遅れることがあります。これにより、Notification Services によるサブスクリプション ルールの処理が遅れることになります。
クォンタム制限を指定すると、アプリケーションが実際のクロックよりも大幅に遅れるのを防ぎ、新しいデータを時間どおりに処理することができます。
Application(Instance,String) コンストラクタを使用する場合、既定値は 30 クォンタムです。この値は、QuantumDuration の値が既定値の 1 分である場合は 30 分に相当します。既定のコンストラクタを使用する場合、このプロパティを設定する必要があります。
0 は、サブスクリプションのクォンタム制限がないことを示します。この場合、サブスクリプション ルールの実行はスキップされません。
使用例
次の例は、サブスクリプションのクォンタム制限を含むすべてのアプリケーション実行設定の設定方法を示しています。
// Define application execution settings
myApplication.QuantumDuration = new TimeSpan(0, 0, 15);
myApplication.PerformanceQueryInterval = new TimeSpan(0, 0, 5);
myApplication.SubscriptionQuantumLimit = 1;
myApplication.ChronicleQuantumLimit = 1;
myApplication.VacuumRetentionAge = new TimeSpan(0, 0, 1);
myApplication.LogBeforeDeliveryAttempts = false;
myApplication.LogNotificationText = false;
myApplication.LogStatusInfo = false;
myApplication.EventThrottle = 500;
myApplication.NotificationThrottle = 500;
myApplication.SubscriptionThrottle = 500;
myApplication.ProcessEventsInOrder = false;
' Define application execution settings
myApplication.QuantumDuration = New TimeSpan(0, 0, 15)
myApplication.PerformanceQueryInterval = New TimeSpan(0, 0, 5)
myApplication.SubscriptionQuantumLimit = 1
myApplication.ChronicleQuantumLimit = 1
myApplication.VacuumRetentionAge = New TimeSpan(0, 0, 1)
myApplication.LogBeforeDeliveryAttempts = False
myApplication.LogNotificationText = False
myApplication.LogStatusInfo = False
myApplication.EventThrottle = 500
myApplication.NotificationThrottle = 500
myApplication.SubscriptionThrottle = 500
myApplication.ProcessEventsInOrder = False
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Application Class
Application Members
Microsoft.SqlServer.Management.Nmo Namespace