case class MaxStale(delta: Option[Seconds]) extends CacheDirective with Product with Serializable

The "max-stale" request directive indicates that the client is willing to accept a response that has exceeded its freshness lifetime. If max-stale is assigned a value, then the client is willing to accept a response that has exceeded its freshness lifetime by no more than the specified number of seconds. If no value is assigned to max-stale, then the client is willing to accept a stale response of any age.

This directive uses the token form of the argument syntax: e.g., 'max-stale=10' not 'max-stale="10"'. A sender SHOULD NOT generate the quoted-string form.

https://tools.ietf.org/html/rfc7234#section-5.2.1.2

Source
CacheDirectives.scala
Linear Supertypes
Serializable, Product, Equals, CacheDirective, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MaxStale
  2. Serializable
  3. Product
  4. Equals
  5. CacheDirective
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MaxStale(delta: Option[Seconds])

Value Members

  1. val delta: Option[Seconds]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def toString(): String
    Definition Classes
    MaxStale → AnyRef → Any