final class TaskResponseOps extends AnyVal with TaskMessageOps[Response] with ResponseOps
- Source
- MessageSyntax.scala
- Alphabetic
- By Inheritance
- TaskResponseOps
- ResponseOps
- TaskMessageOps
- MessageOps
- AnyVal
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
Self = Task[Response.Self]
- Definition Classes
- TaskMessageOps → MessageOps
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to any2stringadd[TaskResponseOps] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (TaskResponseOps, B)
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to ArrowAssoc[TaskResponseOps] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
addCookie(name: String, content: String, expires: Option[Instant] = None): Self
Add a Set-Cookie header with the provided values
Add a Set-Cookie header with the provided values
- Definition Classes
- ResponseOps
-
final
def
addCookie(cookie: Cookie): Self
Add a Set-Cookie header for the provided Cookie
Add a Set-Cookie header for the provided Cookie
- Definition Classes
- ResponseOps
-
final
def
as[T](implicit decoder: EntityDecoder[T]): Task[T]
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 T
- Definition Classes
- MessageOps
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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 theParseFailure\/T
- Definition Classes
- TaskMessageOps → MessageOps
-
def
ensuring(cond: (TaskResponseOps) ⇒ Boolean, msg: ⇒ Any): TaskResponseOps
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to Ensuring[TaskResponseOps] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (TaskResponseOps) ⇒ Boolean): TaskResponseOps
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to Ensuring[TaskResponseOps] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): TaskResponseOps
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to Ensuring[TaskResponseOps] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): TaskResponseOps
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to Ensuring[TaskResponseOps] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
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
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to StringFormat[TaskResponseOps] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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
-
final
def
removeCookie(name: String): Self
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
-
final
def
removeCookie(cookie: Cookie): Self
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
-
final
def
removeHeader(key: HeaderKey): Self
- Definition Classes
- MessageOps
-
final
def
replaceAllHeaders(headers: Header*): Self
Replace the existing headers with those provided
Replace the existing headers with those provided
- Definition Classes
- MessageOps
-
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
-
val
self: Task[Response]
- Definition Classes
- TaskResponseOps → TaskMessageOps
-
def
toString(): String
- Definition Classes
- Any
-
def
transformHeaders(f: (Headers) ⇒ Headers): Self
- Definition Classes
- TaskMessageOps → MessageOps
-
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
- TaskMessageOps → MessageOps
-
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
-
def
withBody[T](b: T)(implicit w: EntityEncoder[T]): Self
Add a body to the message
Add a body to the message
- Definition Classes
- TaskMessageOps
- See also
-
final
def
withContentType(contentType: Option[Content-Type]): Self
- Definition Classes
- MessageOps
-
def
withStatus(status: Status): Self
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
- TaskResponseOps → ResponseOps
-
final
def
withTrailerHeaders(trailerHeaders: Task[Headers]): Self
- Definition Classes
- MessageOps
-
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
-
def
→[B](y: B): (TaskResponseOps, B)
- Implicit
- This member is added by an implicit conversion from TaskResponseOps to ArrowAssoc[TaskResponseOps] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc