共用方式為


SqlWorkflowInstanceStore.RunnableInstancesDetectionPeriod 屬性

定義

指定時間週期,在此時間週期之後,SQL 工作流程執行個體存放區會在上一個偵測循環之後執行偵測工作,偵測持續性資料庫中任何可執行的或可啟動的工作流程執行個體。

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 會執行內部工作,定期喚醒和檢查持續性資料庫中是否有任何可執行的執行個體。 如果實例不是處於暫停狀態或已完成狀態,且符合下列條件,則為 可執行實例:

  • 執行個體已解除鎖定,並具有已過期的暫止計時器。

  • 實例已解除鎖定,其狀態為 [正在執行]。

  • 執行個體上有過期的鎖定。

當 SQL 工作流程執行個體存放區在資料庫中找到可執行的執行個體,同時找到可載入在電腦上執行之執行個體的工作流程主機時,會引發 HasRunnableWorkflowEvent

當工作流程主機收到這個事件時,會針對執行個體存放區執行 TryLoadRunnableWorkflowCommand,將執行個體載入至記憶體。

屬性的類型是 TimeSpan,而值的格式為 「hh:mm:ss」。 最小值為 「00:00:01」 (1 秒) 。 如果省略,預設為 「00:00:05」 (5 秒) 。 這個參數是選擇性參數。

適用於