Packages

object Response extends Serializable

Source
Message.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Response
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. val fallthrough: Task[Response]

    The default response to signifiy that a Service could not handle a response.

    The default response to signifiy that a Service could not handle a response. This generates a 404 response r such that Fallthrough.isFallthrough(r.run) is true. This response is used todo preserve the totality of a Service, while indicating that a better response may be obtained by falling through to another service via orElse.

    See Fallthrough for more details.

  2. implicit val instance: Fallthrough[Response]

    A Response falls through if it is Response.fallthrough.

  3. def notFound(request: Request): Task[Response]