SqlWorkflowInstanceStore.RunnableInstancesDetectionPeriod プロパティ

定義

前回の検出サイクルの後、SQL Workflow Instance Store が実行可能またはアクティブ化可能なワークフロー インスタンスを永続性データベースで検出する検出タスクを実行するまでの時間を指定します。

public:
 property TimeSpan RunnableInstancesDetectionPeriod { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan RunnableInstancesDetectionPeriod { get; set; }
member this.RunnableInstancesDetectionPeriod : TimeSpan with get, set
Public Property RunnableInstancesDetectionPeriod As TimeSpan

プロパティ値

TimeSpan を返します。

SqlWorkflowInstanceStore で RunnableInstancesDetectionPeriod を使用するコード サンプルを次に示します。

static void Main(string[] args)
{
    // Create service host.
    WorkflowServiceHost host = new WorkflowServiceHost(new CountingWorkflow(), new Uri(hostBaseAddress));

    // Add service endpoint.
    host.AddServiceEndpoint("ICountingWorkflow", new BasicHttpBinding(), "");

    // Define SqlWorkflowInstanceStoreBehavior:
    //   Set interval to renew instance lock to 5 seconds.
    //   Set interval to check for runnable instances to 2 seconds.
    //   Instance Store does not keep instances after it is completed.
    //   Select exponential back-off algorithm when retrying to load a locked instance.
    //   Instance state information is compressed using the GZip compressing algorithm.
    SqlWorkflowInstanceStoreBehavior instanceStoreBehavior = new SqlWorkflowInstanceStoreBehavior(connectionString);
    instanceStoreBehavior.HostLockRenewalPeriod = new TimeSpan(0, 0, 5);
    instanceStoreBehavior.RunnableInstancesDetectionPeriod = new TimeSpan(0, 0, 2);
    instanceStoreBehavior.InstanceCompletionAction = InstanceCompletionAction.DeleteAll;
    instanceStoreBehavior.InstanceLockedExceptionAction = InstanceLockedExceptionAction.AggressiveRetry;
    instanceStoreBehavior.InstanceEncodingOption = InstanceEncodingOption.GZip;
    host.Description.Behaviors.Add(instanceStoreBehavior);

    // Open service host.
    host.Open();

    // Create a client that sends a message to create an instance of the workflow.
    ICountingWorkflow client = ChannelFactory<ICountingWorkflow>.CreateChannel(new BasicHttpBinding(), new EndpointAddress(hostBaseAddress));
    client.start();

    Console.WriteLine("(Press [Enter] at any time to terminate host)");
    Console.ReadLine();
    host.Close();
}

注釈

SqlWorkflowInstanceStore は、定期的にアクティブになる内部タスクを実行し、永続性データベースに実行可能インスタンスが存在するかどうかを確認します。 インスタンスが中断状態または完了状態ではなく、次の条件を満たしている場合、インスタンスは 実行可能です。

  • インスタンスがロック解除されていて、保留タイマーの期限が切れている。

  • インスタンスがロック解除されていて、ステータスが Executing である。

  • インスタンスに期限切れのロックがある。

データベースに実行可能インスタンスが見つかり、コンピューターで実行しているインスタンスを読み込むことができるワークフロー ホストも見つかると、SQL Workflow Instance Store は HasRunnableWorkflowEvent を発生させます。

ワークフロー ホストはこのイベントを受け取ると、インスタンスをメモリに読み込むために、インスタンス ストアに対して TryLoadRunnableWorkflowCommand を実行します。

プロパティの型は TimeSpan で、値は "hh:mm:ss" の形式です。 最小値は "00:00:01" (1 秒) です。 省略すると、既定値は "00:00:05" (5 秒) になります。 このパラメーターは省略可能です。

適用対象