Status

sealed abstract case class Status extends Ordered[Status] with Renderable

Representation of the HTTP response code and reason

'''Note: ''' the reason is not important to the protocol and is not considered in equality checks.

Value parameters:
code

HTTP status code

reason

reason for the response. eg, OK

See also:
Companion:
object
trait Serializable
trait Product
trait Equals
trait Comparable[Status]
class Object
trait Matchable
class Any

Value members

Abstract methods

Concrete methods

def compare(that: Status): Int
override def render(writer: Writer): writer
Definition Classes
def unapply[F[_]](msg: Response[F]): Option[Response[F]]

Helpers for for matching against a Response

Helpers for for matching against a Response

Inherited methods

def <(that: Status): Boolean
Inherited from:
Ordered
def <=(that: Status): Boolean
Inherited from:
Ordered
def >(that: Status): Boolean
Inherited from:
Ordered
def >=(that: Status): Boolean
Inherited from:
Ordered
def compareTo(that: Status): Int
Inherited from:
Ordered
Inherited from:
Product

Generates a String rendering of this object

Generates a String rendering of this object

Inherited from:
Renderable
override def toString: String
Definition Classes
Renderable -> Any
Inherited from:
Renderable

Concrete fields