com.twitter.finagle.service

RetryPolicy

Related Docs: object RetryPolicy | package service

abstract class RetryPolicy[-A] extends (A) ⇒ Option[(Duration, RetryPolicy[A])]

A function defining retry behavior for a given value type A.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RetryPolicy
  2. Function1
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RetryPolicy()

Abstract Value Members

  1. abstract def apply(v1: A): Option[(Duration, RetryPolicy[A])]

    Definition Classes
    Function1

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def andThen[A](g: (Option[(Duration, RetryPolicy[A])]) ⇒ A): (A) ⇒ A

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def compose[A](g: (A) ⇒ A): (A) ⇒ Option[(Duration, RetryPolicy[A])]

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def filter[B <: A](pred: (B) ⇒ Boolean): RetryPolicy[B]

    Creates a new RetryPolicy based on the current RetryPolicy in which values of A are first checked against a predicate function, and only if the predicate returns true will the value be passed on to the current RetryPolicy.

    Creates a new RetryPolicy based on the current RetryPolicy in which values of A are first checked against a predicate function, and only if the predicate returns true will the value be passed on to the current RetryPolicy.

    The predicate function need not be a pure function, but can change its behavior over time. For example, the predicate function's decision can be based upon backpressure signals supplied by things like failure rates or latency, which allows RetryPolicys to dynamically reduce the number of retries in response to backpressure.

    The predicate function is only called on the first failure in a chain. Any additional chained RetryPolicies returned by the current policy will then see additional failures unfiltered. Contrast this will filterEach, which applies the filter to each RetryPolicy in the chain.

  11. def filterEach[B <: A](pred: (B) ⇒ Boolean): RetryPolicy[B]

    Similar to filter, but the predicate is applied to each RetryPolicy in the chain returned by the current RetryPolicy.

    Similar to filter, but the predicate is applied to each RetryPolicy in the chain returned by the current RetryPolicy. For example, if the current RetryPolicy returns Some((D, P')) for value E (of type A), and the given predicate returns true for E, then the value returned from the filtering RetryPolicy will be Some((D, P)) where P is equal to P'.filterEach(pred).

    One example where this is useful is to dynamically and fractionally allow retries based upon backpressure signals. If, for example, the predicate function returned true or false based upon a probability distribution computed from a backpressure signal, it could return true 50% of the time, giving you a 50% chance of performing a single retry, a 25% chance of performing 2 retries, 12.5% chance of performing 3 retries, etc. This might be more desirable than just using filter where you end up with a 50% chance of no retries and 50% chance of the full number of retries.

  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def limit(maxRetries: ⇒ Int): RetryPolicy[A]

    Applies a dynamically chosen retry limit to an existing RetryPolicy that may allow for more retries.

    Applies a dynamically chosen retry limit to an existing RetryPolicy that may allow for more retries. When the returned RetryPolicy is first invoked, it will call the maxRetries by-name parameter to get the current maximum retries allowed. Regardless of the number of retries that the underlying policy would allow, it is capped to be no greater than the number returned by maxRetries on the first failure in the chain.

    Using a dynamically choosen retry limit allows for the retry count to be tuned at runtime based upon backpressure signals such as failure rate or request latency.

  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    Function1 → AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from (A) ⇒ Option[(Duration, RetryPolicy[A])]

Inherited from AnyRef

Inherited from Any

Ungrouped