scalaz.http.response

StreamResponse

object StreamResponse extends AnyRef

Functions to create responses that have a stream body.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. StreamResponse
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  12. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  13. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  14. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  15. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  16. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  17. def redirect (v: Version, location: String): Response[Stream]

    Create a response with the given version that redirects (301 Moved Permanently) to the given location.

    Create a response with the given version that redirects (301 Moved Permanently) to the given location. This function fails if the given string value is empty.

  18. def redirect (v: Version, location: NonEmptyList[Char]): Response[Stream]

    Create a response with the given version that redirects (301 Moved Permanently) to the given location.

  19. def response (v: Version, s: Status): Response[Stream]

    Create a response with the given version and status, no headers and empty body.

  20. def response (v: Version, s: Status, h: List[(ResponseHeader, NonEmptyList[Char])]): Response[Stream]

    Create a response with the given version, status, headers and empty body.

  21. def response (v: Version, s: Status, b: Stream[Byte]): Response[Stream]

    Create a response with the given version, status, body and no headers.

  22. def response (v: Version, s: Status, h: List[(ResponseHeader, NonEmptyList[Char])], b: Stream[Byte]): Response[Stream]

    Create a response with the given version, status, headers and body.

  23. implicit def response (l: StatusLine): Response[Stream]

    Create a response with the given status line, no headers and empty body.

    Create a response with the given status line, no headers and empty body.

    Attributes
    implicit
  24. def response (l: StatusLine, h: List[(ResponseHeader, NonEmptyList[Char])]): Response[Stream]

    Create a response with the given status line and headers and empty body.

  25. def response (l: StatusLine, b: Stream[Byte]): Response[Stream]

    Create a response with the given status line and body with no headers.

  26. def response (l: StatusLine, h: List[(ResponseHeader, NonEmptyList[Char])], b: Stream[Byte]): Response[Stream]

    Create a response with the given status line, headers and body.

  27. implicit def response10 (s: Status): Response[Stream]

    Create a response with the given status, a HTTP/1.

    Create a response with the given status, a HTTP/1.0 version, no headers and an empty body.

    Attributes
    implicit
  28. implicit def response11 (s: Status): Response[Stream]

    Create a response with the given status, a HTTP/1.

    Create a response with the given status, a HTTP/1.1 version, no headers and an empty body.

    Attributes
    implicit
  29. def statusLine (status: Status)(implicit req: Request[Stream]): StatusLine

    Create a response with the given status, a version derived from the given request, no headers and an empty body.

  30. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  31. def toString (): String

    Definition Classes
    AnyRef → Any
  32. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any