final case class AkkaHeadersWrapper(request: HttpRequest, knownContentLength: Option[String], hs: Seq[HttpHeader], isChunked: Option[String], uri: String) extends Headers with Product with Serializable
- Alphabetic
- By Inheritance
- AkkaHeadersWrapper
- Serializable
- Product
- Equals
- Headers
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new AkkaHeadersWrapper(request: HttpRequest, knownContentLength: Option[String], hs: Seq[HttpHeader], isChunked: Option[String], uri: String)
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
- var _headers: Seq[(String, String)]
- Attributes
- protected
- Definition Classes
- Headers
- def add(headers: (String, String)*): AkkaHeadersWrapper
Append the given headers
Append the given headers
- Definition Classes
- AkkaHeadersWrapper → Headers
- def apply(key: String): String
Retrieves the first header value which is associated with the given key.
Retrieves the first header value which is associated with the given key.
- Definition Classes
- AkkaHeadersWrapper → Headers
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- lazy val asJava: Headers
- Definition Classes
- Headers
- 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(other: Any): Boolean
- Definition Classes
- AkkaHeadersWrapper → Equals → Headers → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def get(key: String): Option[String]
Optionally returns the first header value associated with a key.
Optionally returns the first header value associated with a key.
- Definition Classes
- AkkaHeadersWrapper → Headers
- def getAll(key: String): Seq[String]
Retrieve all header values associated with the given key.
Retrieve all header values associated with the given key.
- Definition Classes
- AkkaHeadersWrapper → Headers
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hasBody: Boolean
True if this request has a body, so we know if we should trigger body parsing.
True if this request has a body, so we know if we should trigger body parsing. The base implementation simply checks for the Content-Length or Transfer-Encoding headers, but subclasses (such as fake requests) may return true in other cases so the headers need not be updated to reflect the body.
- Definition Classes
- AkkaHeadersWrapper → Headers
- def hasHeader(headerName: String): Boolean
Checks if the given header is present.
Checks if the given header is present.
- headerName
The name of the header (case-insensitive)
- returns
true
if the request did contain the header.
- Definition Classes
- AkkaHeadersWrapper → Headers
- def hashCode(): Int
- Definition Classes
- AkkaHeadersWrapper → Headers → AnyRef → Any
- lazy val headers: Seq[(String, String)]
The headers as a sequence of name-value pairs.
The headers as a sequence of name-value pairs.
- Definition Classes
- AkkaHeadersWrapper → Headers
- val hs: Seq[HttpHeader]
- val isChunked: Option[String]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- lazy val keys: Set[String]
Retrieve all header keys
Retrieve all header keys
- Definition Classes
- AkkaHeadersWrapper → Headers
- val knownContentLength: Option[String]
- 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()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def remove(keys: String*): Headers
Remove any headers with the given keys
Remove any headers with the given keys
- Definition Classes
- AkkaHeadersWrapper → Headers
- def replace(headers: (String, String)*): Headers
Append the given headers, replacing any existing headers having the same keys
Append the given headers, replacing any existing headers having the same keys
- Definition Classes
- AkkaHeadersWrapper → Headers
- val request: HttpRequest
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- lazy val toMap: Map[String, Seq[String]]
Transform the Headers to a Map
Transform the Headers to a Map
- Definition Classes
- Headers
- lazy val toSimpleMap: Map[String, String]
Transform the Headers to a Map by ignoring multiple values.
Transform the Headers to a Map by ignoring multiple values.
- Definition Classes
- Headers
- def toString(): String
- Definition Classes
- Headers → AnyRef → Any
- val uri: String
- 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()