A retry policy that never retries nor ignores.

All of the methods of this retry policy unconditionally return rethrow. If this policy is used, retry logic will have to be implemented in business code.

Augments

  • RetryPolicy

Constructor

new

FallthroughRetryPolicy

()

Creates a new instance of FallthroughRetryPolicy.

Methods

onReadTimeout

()

Implementation of RetryPolicy method that returns rethrow.

onRequestError

()

Implementation of RetryPolicy method that returns rethrow.

onUnavailable

()

Implementation of RetryPolicy method that returns rethrow.

onWriteTimeout

()

Implementation of RetryPolicy method that returns rethrow.