object ResponseClassifier
- Alphabetic
- By Inheritance
- ResponseClassifier
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val Default: ResponseClassifier
Finagle's default ResponseClassifier.
Finagle's default ResponseClassifier.
Finagle does not have application domain knowledge and as such this treats all
Return
responses as ResponseClass.Success, all retryableThrows
as ResponseClass.RetryableFailure and allThrows
as ResponseClass.NonRetryableFailure.It is a total function covering the entire input domain and as such it is recommended that it is used with user's classifiers:
theirClassifier.applyOrElse(theirReqRep, ResponseClassifier.Default)
- val IgnoreIRTEs: ResponseClassifier
The
IgnoreIRTEs
ResponseClassifier matchesDefault
in all aspects except for how it handles IndividualRequestTimeoutExceptions specifically.The
IgnoreIRTEs
ResponseClassifier matchesDefault
in all aspects except for how it handles IndividualRequestTimeoutExceptions specifically. ForIRTEs
, this ResponseClassifier considers them to be ResponseClass.Ignored.This ResponseClassifier is useful for when a particular Finagle client has a very low
RequestTimeout
set, such that receiving a response within that window is seen as fortuitous, and that not receiving a response within that window is not seen as problematic. In this case, the timed out request is treated as ignorable, and should not be seen as or counted as a failure. - val RetryOnChannelClosed: ResponseClassifier
Implementation for the ResponseClassifier that retries requests on all channel closed exceptions.
Implementation for the ResponseClassifier that retries requests on all channel closed exceptions.
This is safe to use for idempotent requests.
- val RetryOnThrows: ResponseClassifier
Implementation for the ResponseClassifier that retries requests on all throws.
Implementation for the ResponseClassifier that retries requests on all throws.
This would be useful for instances of idempotent requests, for example on database reads or similar.
- val RetryOnTimeout: ResponseClassifier
Implementation for the ResponseClassifier that retries requests on all timeout exceptions.
Implementation for the ResponseClassifier that retries requests on all timeout exceptions.
This would be useful for instances of idempotent requests, for example on database reads or similar. May also be useful for non-idempotent requests depending on how the remote service handles duplicate requests.
- val RetryOnWriteExceptions: ResponseClassifier
Implementation for the ResponseClassifier that retries requests on write exceptions.
Implementation for the ResponseClassifier that retries requests on write exceptions.
These are always safe to retry, so this is safe even in non-idempotent cases.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def named(name: String)(underlying: ResponseClassifier): ResponseClassifier
Create a ResponseClassifier with the given name for its
toString
.Create a ResponseClassifier with the given name for its
toString
.- Note
be careful when
underlying
composes otherResponseClassifiers
which are not total.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()