c

org.http4s.syntax

TaskRequestOps

final class TaskRequestOps extends AnyVal with TaskMessageOps[Request] with RequestOps

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskRequestOps
  2. RequestOps
  3. TaskMessageOps
  4. MessageOps
  5. AnyVal
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TaskRequestOps(self: Task[Request])

Type Members

  1. type Self = Task[Request.Self]
    Definition Classes
    TaskMessageOpsMessageOps

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to any2stringadd[TaskRequestOps] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TaskRequestOps, B)
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to ArrowAssoc[TaskRequestOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def addCookie(name: String, content: String, expires: Option[HttpDate] = None): Self

    Add a Cookie header with the provided values

    Add a Cookie header with the provided values

    Definition Classes
    RequestOps
  7. final def addCookie(cookie: Cookie): Self

    Add a Cookie header for the provided Cookie

    Add a Cookie header for the provided Cookie

    Definition Classes
    RequestOps
  8. final def as[T](implicit decoder: EntityDecoder[T]): Task[T]

    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
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def attemptAs[T](implicit decoder: EntityDecoder[T]): DecodeResult[T]

    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
  11. final def decode[A](f: (A) ⇒ Task[Response])(implicit decoder: EntityDecoder[A]): Task[Response]

    Helper method for decoding Requests

    Helper method for decoding Requests

    Attempt to decode the Request and, if successful, execute the continuation to get a Response. If decoding fails, an UnprocessableEntity Response is generated.

    Definition Classes
    RequestOps
  12. final def decodeStrict[A](f: (A) ⇒ Task[Response])(implicit decoder: EntityDecoder[A]): Task[Response]

    Helper method for decoding Requests

    Helper method for decoding Requests

    Attempt to decode the Request and, if successful, execute the continuation to get a Response. If decoding fails, an UnprocessableEntity Response is generated. If the decoder does not support the MediaType of the Request, a UnsupportedMediaType Response is generated instead.

    Definition Classes
    RequestOps
  13. def decodeWith[A](decoder: EntityDecoder[A], strict: Boolean)(f: (A) ⇒ Task[Response]): Task[Response]

    Like decode, but with an explicit decoder.

    Like decode, but with an explicit decoder.

    strict

    If strict, will return a Status.UnsupportedMediaType http Response if this message's MediaType is not supported by the provided decoder

    Definition Classes
    TaskRequestOpsRequestOps
  14. def ensuring(cond: (TaskRequestOps) ⇒ Boolean, msg: ⇒ Any): TaskRequestOps
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to Ensuring[TaskRequestOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (TaskRequestOps) ⇒ Boolean): TaskRequestOps
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to Ensuring[TaskRequestOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): TaskRequestOps
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to Ensuring[TaskRequestOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): TaskRequestOps
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to Ensuring[TaskRequestOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def filterHeaders(f: (Header) ⇒ Boolean): Self

    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
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to StringFormat[TaskRequestOps] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def putHeaders(headers: Header*): Self

    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
  23. final def removeHeader(key: HeaderKey): Self
    Definition Classes
    MessageOps
  24. final def replaceAllHeaders(headers: Header*): Self

    Replace the existing headers with those provided

    Replace the existing headers with those provided

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

    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
  26. val self: Task[Request]
    Definition Classes
    TaskRequestOpsTaskMessageOps
  27. def toString(): String
    Definition Classes
    Any
  28. def transformHeaders(f: (Headers) ⇒ Headers): Self
    Definition Classes
    TaskMessageOpsMessageOps
  29. def withAttribute[A](key: AttributeKey[A], value: A): Self

    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
  30. def withAttribute[V](entry: AttributeEntry[V]): Self

    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
  31. def withBody[T](b: T)(implicit w: EntityEncoder[T]): Self
    Definition Classes
    TaskMessageOps
  32. final def withContentType(contentType: Option[Content-Type]): Self
    Definition Classes
    MessageOps
  33. def withPathInfo(pi: String): Task[Request]
    Definition Classes
    TaskRequestOpsRequestOps
  34. final def withTrailerHeaders(trailerHeaders: Task[Headers]): Self
    Definition Classes
    MessageOps
  35. final def withType(t: MediaType): Self

    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
  36. def [B](y: B): (TaskRequestOps, B)
    Implicit
    This member is added by an implicit conversion from TaskRequestOps to ArrowAssoc[TaskRequestOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from RequestOps

Inherited from TaskMessageOps[Request]

Inherited from MessageOps

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from TaskRequestOps to any2stringadd[TaskRequestOps]

Inherited by implicit conversion StringFormat from TaskRequestOps to StringFormat[TaskRequestOps]

Inherited by implicit conversion Ensuring from TaskRequestOps to Ensuring[TaskRequestOps]

Inherited by implicit conversion ArrowAssoc from TaskRequestOps to ArrowAssoc[TaskRequestOps]

Ungrouped