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
- Alphabetic
- By Inheritance
- CacheDirective
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final case class max-age(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
- final case class max-stale(deltaSeconds: Option[Duration] = None) extends CacheDirective with Product with Serializable
- final case class min-fresh(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
- final case class no-cache(fieldNames: List[CIString] = Nil) extends CacheDirective with Product with Serializable
- final case class private(fieldNames: List[CIString] = Nil) extends CacheDirective with Product with Serializable
- final case class s-maxage(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
- final case class stale-if-error(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
- final case class stale-while-revalidate(deltaSeconds: Duration) extends CacheDirective with Product with Serializable
Value Members
- def apply(name: String): CacheDirective
- def apply(name: String, argument: Option[String]): CacheDirective
- def apply(name: CIString, argument: Option[String] = None): CacheDirective
- object must-revalidate extends CacheDirective with Product with Serializable
- object no-store extends CacheDirective with Product with Serializable
- object no-transform extends CacheDirective with Product with Serializable
- object only-if-cached extends CacheDirective with Product with Serializable
- object proxy-revalidate extends CacheDirective with Product with Serializable
- object public extends CacheDirective with Product with Serializable