package impl

Type Members

  1. trait EmptyResponseGenerator extends ResponseGenerator

    Helper for the generation of a org.http4s.Response which will not contain a body

    Helper for the generation of a org.http4s.Response which will not contain a body

    While it is possible to for the org.http4s.Response manually, the EntityResponseGenerators offer shortcut syntax to make intention clear and concise.

    Example:
    1. val resp: Task[Response] = Status.Continue()
  2. trait EntityResponseGenerator extends EmptyResponseGenerator

    Helper for the generation of a org.http4s.Response which may contain a body

    Helper for the generation of a org.http4s.Response which may contain a body

    While it is possible to construct the org.http4s.Response manually, the EntityResponseGenerators offer shortcut syntax to make intention clear and concise.

    Example:
    1. val resp: Task[Response] = Ok("Hello world!")
  3. trait LocationResponseGenerator extends ResponseGenerator
  4. trait ProxyAuthenticateResponseGenerator extends ResponseGenerator
  5. trait ResponseGenerator extends Any
  6. trait WwwAuthenticateResponseGenerator extends ResponseGenerator

Ungrouped