다음을 통해 공유


MsmqElementBase.MaxRetryCycles 속성

정의

수신 애플리케이션으로 메시지 배달을 시도하는 최대 재시도 주기 수를 가져오거나 설정합니다.

public:
 property int MaxRetryCycles { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxRetryCycles", DefaultValue=2)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxRetryCycles { get; set; }
[<System.Configuration.ConfigurationProperty("maxRetryCycles", DefaultValue=2)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxRetryCycles : int with get, set
Public Property MaxRetryCycles As Integer

속성 값

Int32

애플리케이션으로 메시지 배달을 시도하는 최대 재시도 주기 수를 나타내는 정수입니다. 기본값은 2입니다.

특성

설명

단일 재시도 주기는 지정된 횟수만큼 애플리케이션으로 메시지 배달을 시도합니다. 시도 횟수는 ReceiveRetryCount 속성으로 설정합니다. 배달 시도를 모두 수행했으나 애플리케이션에서 메시지를 배달하지 못한 경우 그 메시지는 재시도 큐로 보내집니다. 후속 재시도 주기는 RetryCycleDelay 속성에서 지정한 지연 시간이 지나고 애플리케이션에서 메시지 배달을 다시 시도하기 위해 메시지가 재시도 큐에서 애플리케이션 큐로 돌아가는 절차로 구성됩니다. MaxRetryCycles 속성은 애플리케이션에서 메시지 배달 시도에 사용할 재시도 주기 수를 지정합니다.

적용 대상