다음을 통해 공유


SqlWorkflowInstanceStore.InstanceLockedExceptionAction 속성

정의

지속성 공급자가 InstanceLockedException을 catch할 때 수행할 동작을 지정합니다.

public:
 property System::Activities::DurableInstancing::InstanceLockedExceptionAction InstanceLockedExceptionAction { System::Activities::DurableInstancing::InstanceLockedExceptionAction get(); void set(System::Activities::DurableInstancing::InstanceLockedExceptionAction value); };
public System.Activities.DurableInstancing.InstanceLockedExceptionAction InstanceLockedExceptionAction { get; set; }
member this.InstanceLockedExceptionAction : System.Activities.DurableInstancing.InstanceLockedExceptionAction with get, set
Public Property InstanceLockedExceptionAction As InstanceLockedExceptionAction

속성 값

지속성 공급자가 InstanceLockedException을 catch할 때 수행할 동작입니다.

예제

다음 코드 샘플에서는 SqlWorkflowInstanceStore에 InstanceLockedExceptionAction을 사용하는 방법을 보여 줍니다.

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

설명

워크플로 서비스 인스턴스에서 InstanceLockedException이 발생할 때 서비스 호스트가 수행할 동작을 지정합니다. 서비스 호스트가 다른 소유자에 의해 이미 잠긴 인스턴스를 잠그려고 하면 InstanceLockedException이 표시됩니다. 가능한 값은 다음 목록에 나와 있습니다.

  • 없음. 서비스 호스트가 인스턴스 잠금을 시도하지 않고 InstanceLockedException을 호출자에게 전달합니다.

  • BasicRetry합니다. 서비스 호스트가 선형 다시 시도 간격을 사용하여 인스턴스 잠금을 다시 시도하고 시퀀스의 끝에 예외를 호출자에게 전달합니다.

  • Aggressiveretry로합니다. 서비스 호스트에서 지연 간격을 기하급수적으로 증가시켜 인스턴스 잠금을 다시 시도하고 시퀀스 마지막에 InstanceLockedException을 호출자에게 전달합니다. 가능한 한 빨리 잠금을 얻기 위해 처음에는 간격이 짧지만 시도가 실패할수록 간격이 더 커집니다.

적용 대상