Packages

t

org.http4s

MessageOps

trait MessageOps[F[_]] extends Any

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MessageOps
  2. 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

Type Members

  1. abstract type Self

Abstract Value Members

  1. abstract def attemptAs[T](implicit F: FlatMap[F], decoder: EntityDecoder[F, T]): DecodeResult[F, 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 effect which will generate the DecodeResult[T]

  2. abstract def getClass(): Class[_]
    Definition Classes
    Any
  3. abstract def transformHeaders(f: (Headers) ⇒ Headers)(implicit F: Functor[F]): Self
  4. abstract def withAttribute[A](key: AttributeKey[A], value: A)(implicit F: Functor[F]): 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

Concrete 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 MessageOps[F] to any2stringadd[MessageOps[F]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MessageOps[F], B)
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to ArrowAssoc[MessageOps[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def as[T](implicit F: FlatMap[F], decoder: EntityDecoder[F, T]): F[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 effect which will generate the T

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def ensuring(cond: (MessageOps[F]) ⇒ Boolean, msg: ⇒ Any): MessageOps[F]
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to Ensuring[MessageOps[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (MessageOps[F]) ⇒ Boolean): MessageOps[F]
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to Ensuring[MessageOps[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): MessageOps[F]
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to Ensuring[MessageOps[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): MessageOps[F]
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to Ensuring[MessageOps[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  13. final def filterHeaders(f: (Header) ⇒ Boolean)(implicit F: Functor[F]): 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

  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to StringFormat[MessageOps[F]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def hashCode(): Int
    Definition Classes
    Any
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def putHeaders(headers: Header*)(implicit F: Functor[F]): 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.

  18. final def removeHeader(key: HeaderKey)(implicit F: Functor[F]): Self
  19. final def replaceAllHeaders(headers: Header*)(implicit F: Functor[F]): Self

    Replace the existing headers with those provided

  20. final def replaceAllHeaders(headers: Headers)(implicit F: Functor[F]): 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

  21. def toString(): String
    Definition Classes
    Any
  22. def withAttribute[V](entry: AttributeEntry[V])(implicit F: Functor[F]): 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

  23. final def withContentType(contentType: Content-Type)(implicit F: Functor[F]): Self
  24. final def withContentTypeOption(contentTypeO: Option[Content-Type])(implicit F: Functor[F]): Self
  25. final def withTrailerHeaders(trailerHeaders: F[Headers])(implicit F: Functor[F]): Self
  26. final def withType(t: MediaType)(implicit F: Functor[F]): Self

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

  27. final def withoutContentType(implicit F: Functor[F]): Self
  28. def [B](y: B): (MessageOps[F], B)
    Implicit
    This member is added by an implicit conversion from MessageOps[F] to ArrowAssoc[MessageOps[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Any

Inherited by implicit conversion any2stringadd from MessageOps[F] to any2stringadd[MessageOps[F]]

Inherited by implicit conversion StringFormat from MessageOps[F] to StringFormat[MessageOps[F]]

Inherited by implicit conversion Ensuring from MessageOps[F] to Ensuring[MessageOps[F]]

Inherited by implicit conversion ArrowAssoc from MessageOps[F] to ArrowAssoc[MessageOps[F]]

Ungrouped