Class

org.http4s.syntax

EffectResponseOps

Related Doc: package syntax

Permalink

final class EffectResponseOps[F[_]] extends AnyVal with EffectMessageSyntax[F, Response[F]] with ResponseOps[F]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EffectResponseOps
  2. ResponseOps
  3. EffectMessageSyntax
  4. MessageOps
  5. AnyVal
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EffectResponseOps(self: F[Response[F]])

    Permalink

Type Members

  1. type Self = F[Response.Self]

    Permalink
    Definition Classes
    EffectMessageSyntaxMessageOps

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 addCookie(name: String, content: String, expires: Option[HttpDate] = None)(implicit F: Functor[F]): Self

    Permalink

    Add a Set-Cookie header with the provided values

    Add a Set-Cookie header with the provided values

    Definition Classes
    ResponseOps
  5. final def addCookie(cookie: Cookie)(implicit F: Functor[F]): Self

    Permalink

    Add a Set-Cookie header for the provided Cookie

    Add a Set-Cookie header for the provided Cookie

    Definition Classes
    ResponseOps
  6. final def as[T](implicit F: FlatMap[F], decoder: EntityDecoder[F, T]): F[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 effect which will generate the T

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

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

    Definition Classes
    EffectMessageSyntaxMessageOps
  9. final def filterHeaders(f: (Header) ⇒ Boolean)(implicit F: Functor[F]): 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
  10. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def putHeaders(headers: Header*)(implicit F: Functor[F]): 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
  13. final def removeCookie(name: String)(implicit F: Functor[F]): Self

    Permalink

    Add a org.http4s.headers.Set-Cookie which will remove the specified cookie from the client

    Add a org.http4s.headers.Set-Cookie which will remove the specified cookie from the client

    Definition Classes
    ResponseOps
  14. final def removeCookie(cookie: Cookie)(implicit F: Functor[F]): Self

    Permalink

    Add a org.http4s.headers.Set-Cookie which will remove the specified cookie from the client

    Add a org.http4s.headers.Set-Cookie which will remove the specified cookie from the client

    Definition Classes
    ResponseOps
  15. final def removeHeader(key: HeaderKey)(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    MessageOps
  16. final def replaceAllHeaders(headers: Header*)(implicit F: Functor[F]): Self

    Permalink

    Replace the existing headers with those provided

    Replace the existing headers with those provided

    Definition Classes
    MessageOps
  17. final def replaceAllHeaders(headers: Headers)(implicit F: Functor[F]): 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
  18. val self: F[Response[F]]

    Permalink
    Definition Classes
    EffectResponseOpsEffectMessageSyntax
  19. def toString(): String

    Permalink
    Definition Classes
    Any
  20. def transformHeaders(f: (Headers) ⇒ Headers)(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    EffectMessageSyntaxMessageOps
  21. def withAttribute[A](key: AttributeKey[A], value: A)(implicit F: Functor[F]): 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
    EffectMessageSyntaxMessageOps
  22. def withAttribute[V](entry: AttributeEntry[V])(implicit F: Functor[F]): 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
  23. def withBody[T](b: T)(implicit F: Monad[F], w: EntityEncoder[F, T]): Self

    Permalink
    Definition Classes
    EffectMessageSyntax
  24. final def withContentType(contentType: Content-Type)(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    MessageOps
  25. final def withContentTypeOption(contentTypeO: Option[Content-Type])(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    MessageOps
  26. def withStatus(status: Status)(implicit F: Functor[F]): Self

    Permalink

    Change the status of this response object

    Change the status of this response object

    status

    value to replace on the response object

    returns

    a new response object with the new status code

    Definition Classes
    EffectResponseOpsResponseOps
  27. final def withTrailerHeaders(trailerHeaders: F[Headers])(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    MessageOps
  28. final def withType(t: MediaType)(implicit F: Functor[F]): 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
  29. final def withoutContentType(implicit F: Functor[F]): Self

    Permalink
    Definition Classes
    MessageOps

Inherited from ResponseOps[F]

Inherited from EffectMessageSyntax[F, Response[F]]

Inherited from MessageOps[F]

Inherited from AnyVal

Inherited from Any

Ungrouped