HttpMessage

wvlet.airframe.http.HttpMessage$
See theHttpMessage companion trait

Http request/response data type definitions

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

case class ByteArrayMessage(content: Array[Byte]) extends Message

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Message
class Object
trait Matchable
class Any
case object EmptyMessage extends Message

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Message
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
implicit class HttpMessageRequestWrapper(val raw: Request) extends HttpRequest[Request]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
implicit class HttpMessageResponseWrapper(val raw: Response) extends HttpResponse[Response]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
class LazyByteArrayMessage(contentReader: => Array[Byte]) extends Message

Attributes

Graph
Supertypes
trait Message
class Object
trait Matchable
class Any
object Message

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Message.type
trait Message

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
case class Request(method: String, uri: String, header: HttpMultiMap, message: Message, remoteAddress: Option[ServerAddress]) extends HttpMessage[Request]

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Request

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Request.type
case class Response(status: HttpStatus, header: HttpMultiMap, message: Message) extends HttpMessage[Response]

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Response

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
case class StringMessage(content: String) extends Message

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Message
class Object
trait Matchable
class Any

Value members

Concrete methods

def byteArrayMessage(content: Array[Byte]): Message
def stringMessage(content: String): Message