Condividi tramite


SqlWorkflowInstanceStore.RunnableInstancesDetectionPeriod Proprietà

Definizione

Specifica il periodo di tempo trascorso il quale l'archivio di istanze del flusso di lavoro SQL esegue un'attività di rilevamento per rilevare eventuali istanze del flusso di lavoro eseguibili o attivabili nel database di persistenza dopo il ciclo di rilevamento precedente.

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

Valore della proprietà

Restituisce TimeSpan.

Esempio

Nell'esempio di codice seguente viene mostrato l'utilizzo di RunnableInstancesDetectionPeriod in SqlWorkflowInstanceStore.

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();
}

Commenti

SqlWorkflowInstanceStore esegue un'attività interna che si attiva periodicamente e controlla se esistono istanze eseguibili nel database di persistenza. Un'istanza è eseguibile, se non si trova nello stato sospeso o nello stato completato e soddisfa le condizioni seguenti:

  • L'istanza è sbloccata e dispone di un timer in sospeso scaduto.

  • L'istanza viene sbloccata e il relativo stato è In esecuzione.

  • Nell'istanza è presente un blocco scaduto.

L'archivio di istanze del flusso di lavoro SQL genera HasRunnableWorkflowEvent quando trova un'istanza eseguibile nel database oltre a un host del flusso di lavoro in grado di caricare l'istanza in esecuzione nel computer.

Quando un host del flusso di lavoro riceve questo evento, esegue TryLoadRunnableWorkflowCommand nell'archivio di istanze per caricare l'istanza nella memoria.

Il tipo della proprietà è TimeSpan e il valore è del formato "hh:mm:ss". Il valore minimo è "00:00:01" (1 sec). Se omesso, il valore predefinito è "00:00:05" (5 secondi). Questo parametro è facoltativo.

Si applica a