scalaz.http.response

StreamResponse

object StreamResponse

Functions to create responses that have a stream body.

Source
StreamResponse.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StreamResponse
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    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.

  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.

  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.

  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. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped