Trait

org.http4s.syntax

TaskMessageOps

Related Doc: package syntax

Permalink

trait TaskMessageOps[M <: Message] extends MessageOps

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskMessageOps
  2. MessageOps
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Task[M.Self]

    Permalink
    Definition Classes
    TaskMessageOpsMessageOps

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  2. abstract def self: Task[M]

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def as[T](implicit decoder: EntityDecoder[T]): Task[T]

    Permalink

    Decode the Message to the specified type

    Decode the Message to the specified type

    If no valid Status has been described, allow Ok

    T

    type of the result

    decoder

    EntityDecoder used to decode the Message

    returns

    the Task which will generate the T

    Definition Classes
    MessageOps
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def attemptAs[T](implicit decoder: EntityDecoder[T]): DecodeResult[T]

    Permalink

    Decode the Message to the specified type

    Decode the Message to the specified type

    T

    type of the result

    decoder

    EntityDecoder used to decode the Message

    returns

    the Task which will generate the DecodeResult[T]

    Definition Classes
    TaskMessageOpsMessageOps
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  8. final def filterHeaders(f: (Header) ⇒ Boolean): Self

    Permalink

    Remove headers that satisfy the predicate

    Remove headers that satisfy the predicate

    f

    predicate

    returns

    a new message object which lacks the specified headers

    Definition Classes
    MessageOps
  9. def hashCode(): Int

    Permalink
    Definition Classes
    Any
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. final def putHeaders(headers: Header*): Self

    Permalink

    Add the provided headers to the existing headers, replacing those of the same header name The passed headers are assumed to contain no duplicate Singleton headers.

    Add the provided headers to the existing headers, replacing those of the same header name The passed headers are assumed to contain no duplicate Singleton headers.

    Definition Classes
    MessageOps
  12. final def removeHeader(key: HeaderKey): Self

    Permalink
    Definition Classes
    MessageOps
  13. final def replaceAllHeaders(headers: Header*): Self

    Permalink

    Replace the existing headers with those provided

    Replace the existing headers with those provided

    Definition Classes
    MessageOps
  14. final def replaceAllHeaders(headers: Headers): Self

    Permalink

    Replaces the Headers of the incoming Request object

    Replaces the Headers of the incoming Request object

    headers

    Headers containing the desired headers

    returns

    a new Request object

    Definition Classes
    MessageOps
  15. def toString(): String

    Permalink
    Definition Classes
    Any
  16. def transformHeaders(f: (Headers) ⇒ Headers): Self

    Permalink
    Definition Classes
    TaskMessageOpsMessageOps
  17. def withAttribute[A](key: AttributeKey[A], value: A): Self

    Permalink

    Generates a new message object with the specified key/value pair appended to the org.http4s.AttributeMap

    Generates a new message object with the specified key/value pair appended to the org.http4s.AttributeMap

    A

    type of the value to store

    key

    AttributeKey with which to associate the value

    value

    value associated with the key

    returns

    a new message object with the key/value pair appended

    Definition Classes
    TaskMessageOpsMessageOps
  18. def withAttribute[V](entry: AttributeEntry[V]): Self

    Permalink

    Generates a new message object with the specified key/value pair appended to the org.http4s.AttributeMap

    Generates a new message object with the specified key/value pair appended to the org.http4s.AttributeMap

    V

    type of the value to store

    entry

    AttributeEntry entry to add

    returns

    a new message object with the key/value pair appended

    Definition Classes
    MessageOps
  19. def withBody[T](b: T)(implicit w: EntityEncoder[T]): Self

    Permalink
  20. final def withContentType(contentType: Option[Content-Type]): Self

    Permalink
    Definition Classes
    MessageOps
  21. final def withTrailerHeaders(trailerHeaders: Task[Headers]): Self

    Permalink
    Definition Classes
    MessageOps
  22. final def withType(t: MediaType): Self

    Permalink

    Added the org.http4s.headers.Content-Type header to the response

    Added the org.http4s.headers.Content-Type header to the response

    Definition Classes
    MessageOps

Inherited from MessageOps

Inherited from Any

Ungrouped