object ResponseServeActions
The possible actions a client can execute when determining to serve a stored response.
- Alphabetic
- By Inheritance
- ResponseServeActions
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class ServeFresh(reason: String) extends ResponseServeAction with Product with Serializable
The stored response is fresh.
The stored response is fresh.
The cache must serve the stored response without validation.
- case class ServeStale(reason: String) extends ResponseServeAction with Product with Serializable
A stored response was found, but is stale.
A stored response was found, but is stale.
The cache must serve the stored response without validation.
- case class ServeStaleAndValidate(reason: String) extends ResponseServeAction with Product with Serializable
A stored response was found, but is stale.
A stored response was found, but is stale.
The cache must serve the stored response immediately, and validate in the background.
If the validation has not happened after now + delta seconds, then the resource should NOT be served stale.
- case class Validate(reason: String, staleIfError: Boolean = false) extends ResponseServeAction with Product with Serializable
A stored response was found, but is stale.
A stored response was found, but is stale.
The cache must validate the request with the origin server.
If the origin server cannot be reached, then the cache MAY serve the stale response. In addition, if staleOnError is true, then the cache can serve the stale response when the origin server returns a 5xx response.
- case class ValidateOrTimeout(reason: String) extends ResponseServeAction with Product with Serializable
A stored response was found, but is stale.
A stored response was found, but is stale.
The cache must validate the request with the origin server.
If the origin server cannot be reached, then the cache MUST serve a gateway timeout response.
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)