NoRetry Class

  • java.lang.Object
    • RetryPolicy
      • com.microsoft.azure.sdk.iot.device.transport.NoRetry

public class NoRetry implements RetryPolicy

Represents a retry policy that performs no retries.

Constructor Summary

Constructor Description
NoRetry()

Method Summary

Modifier and Type Method and Description
RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)

Always says to not retry.

Constructor Details

NoRetry

public NoRetry()

Method Details

getRetryDecision

public RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)

Always says to not retry.

Overrides:

NoRetry.getRetryDecision(int currentRetryCount, TransportException lastException)

Parameters:

currentRetryCount - the number of retries for the given operation
lastException - the last exception encountered

Returns:

the retry decision.

Applies to