Packages

object CacheDirective

A registry of cache-directives, as listed in http://www.iana.org/assignments/http-cache-directives/http-cache-directives.xhtml

Source
CacheDirective.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CacheDirective
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class max-age(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
  2. final case class max-stale(deltaSeconds: Option[Duration] = None) extends CacheDirective with Product with Serializable
  3. final case class min-fresh(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
  4. final case class no-cache(fieldNames: List[CIString] = Nil) extends CacheDirective with Product with Serializable
  5. final case class private(fieldNames: List[CIString] = Nil) extends CacheDirective with Product with Serializable
  6. final case class s-maxage(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
  7. final case class stale-if-error(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
  8. final case class stale-while-revalidate(deltaSeconds: Duration) extends CacheDirective with Product with Serializable

Value Members

  1. def apply(name: String): CacheDirective
  2. def apply(name: String, argument: Option[String]): CacheDirective
  3. def apply(name: CIString, argument: Option[String] = None): CacheDirective
  4. object must-revalidate extends CacheDirective with Product with Serializable
  5. object no-store extends CacheDirective with Product with Serializable
  6. object no-transform extends CacheDirective with Product with Serializable
  7. object only-if-cached extends CacheDirective with Product with Serializable
  8. object proxy-revalidate extends CacheDirective with Product with Serializable
  9. object public extends CacheDirective with Product with Serializable