Class: FallthroughRetryPolicy

policies/retry~FallthroughRetryPolicy

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.

Constructor

new FallthroughRetryPolicy()

Creates a new instance of FallthroughRetryPolicy.
Extends:
  • RetryPolicy

Extends

  • RetryPolicy

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.