Packages

sealed trait Output[+A] extends AnyRef

An output of Endpoint.

Self Type
Output[A]
Source
Output.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Output
  2. AnyRef
  3. Any
Implicitly
  1. by OutputOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def charset: Option[Charset]

    The charset of this Output.

  2. abstract def cookies: Seq[Cookie]

    The cookie list of this Output.

  3. abstract def copy(status: Status = self.status, charset: Option[Charset] = self.charset, headers: Map[String, String] = self.headers, cookies: Seq[Cookie] = self.cookies): Output[A]
    Attributes
    protected
  4. abstract def headers: Map[String, String]

    The header map of this Output.

  5. abstract def status: Status

    The status code of this Output.

  6. abstract def value: A

    Returns the payload value of this Output or throws an exception.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Output[A] to any2stringadd[Output[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Output[A], B)
    Implicit
    This member is added by an implicit conversion from Output[A] to ArrowAssoc[Output[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def ensuring(cond: (Output[A]) ⇒ Boolean, msg: ⇒ Any): Output[A]
    Implicit
    This member is added by an implicit conversion from Output[A] to Ensuring[Output[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (Output[A]) ⇒ Boolean): Output[A]
    Implicit
    This member is added by an implicit conversion from Output[A] to Ensuring[Output[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): Output[A]
    Implicit
    This member is added by an implicit conversion from Output[A] to Ensuring[Output[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): Output[A]
    Implicit
    This member is added by an implicit conversion from Output[A] to Ensuring[Output[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def flatMap[B](fn: (A) ⇒ Output[B]): Output[B]
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Output[A] to StringFormat[Output[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def map[B](fn: (A) ⇒ B): Output[B]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val o: Output[A]
    Implicit
    This member is added by an implicit conversion from Output[A] to OutputOps[A] performed by method OutputOps in io.finch.Output.
    Definition Classes
    OutputOps
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toResponse[CT](implicit tr: ToResponse.Aux[A, CT], tre: ToResponse.Aux[Exception, CT]): Response

    Converts this Output to the HTTP response of the given version.

    Converts this Output to the HTTP response of the given version.

    Implicit
    This member is added by an implicit conversion from Output[A] to OutputOps[A] performed by method OutputOps in io.finch.Output.
    Definition Classes
    OutputOps
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def traverse[B](fn: (A) ⇒ Future[B]): Future[Output[B]]
  29. final def traverseFlatten[B](fn: (A) ⇒ Future[Output[B]]): Future[Output[B]]
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  33. final def withCharset(charset: Charset): Output[A]

    Overrides charset of this Output.

  34. final def withCookie(cookie: Cookie): Output[A]

    Adds a given cookie to this Output.

  35. final def withCookies(cookies: Seq[Cookie]): Output[A]

    Adds given cookies to this Output.

  36. final def withHeader(header: (String, String)): Output[A]

    Adds a given header to this Output.

  37. final def withHeaders(headers: Map[String, String]): Output[A]

    Adds given headers to this Output.

  38. final def withStatus(status: Status): Output[A]

    Overrides the status code of this Output.

  39. def [B](y: B): (Output[A], B)
    Implicit
    This member is added by an implicit conversion from Output[A] to ArrowAssoc[Output[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion OutputOps from Output[A] to OutputOps[A]

Inherited by implicit conversion any2stringadd from Output[A] to any2stringadd[Output[A]]

Inherited by implicit conversion StringFormat from Output[A] to StringFormat[Output[A]]

Inherited by implicit conversion Ensuring from Output[A] to Ensuring[Output[A]]

Inherited by implicit conversion ArrowAssoc from Output[A] to ArrowAssoc[Output[A]]

Ungrouped