Class/Object

sttp.client

RequestT

Related Docs: object RequestT | package client

Permalink

case class RequestT[U[_], T, -R](method: U[Method], uri: U[Uri], body: RequestBody[R], headers: Seq[Header], response: ResponseAs[T, R], options: RequestOptions, tags: Map[String, Any]) extends HasHeaders with RequestTExtensions[U, T, R] with Product with Serializable

Describes a HTTP request, along with a description of how the response body should be handled.

The request can be sent using a SttpBackend, which provides a superset of the required capabilities.

U

Specifies if the method & uri are specified. By default can be either: * Empty, which is a type constructor which always resolves to None. This type of request is aliased to PartialRequest: there's no method and uri specified, and the request cannot be sent. * Identity, which is an identity type constructor. This type of request is aliased to Request: the method and uri are specified, and the request can be sent.

T

The target type, to which the response body should be read.

R

The backend capabilities required by the request or response description. This might be Any (no requirements), Effect (the backend must support the given effect type), Streams (the ability to send and receive streaming bodies) or sttp.capabilities.WebSockets (the ability to handle websocket requests).

response

Description of how the response body should be handled. Needs to be specified upfront so that the response is always consumed and hence there are no requirements on client code to consume it. An exception to this are unsafe streaming and websocket responses, which need to be consumed/closed by the client.

tags

Request-specific tags which can be used by backends for logging, metrics, etc. Not used by default.

Linear Supertypes
Serializable, Serializable, Product, Equals, RequestTExtensions[U, T, R], HasHeaders, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestT
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RequestTExtensions
  7. HasHeaders
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RequestT(method: U[Method], uri: U[Uri], body: RequestBody[R], headers: Seq[Header], response: ResponseAs[T, R], options: RequestOptions, tags: Map[String, Any])

    Permalink

    response

    Description of how the response body should be handled. Needs to be specified upfront so that the response is always consumed and hence there are no requirements on client code to consume it. An exception to this are unsafe streaming and websocket responses, which need to be consumed/closed by the client.

    tags

    Request-specific tags which can be used by backends for logging, metrics, etc. Not used by default.

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def acceptEncoding(encoding: String): RequestT[U, T, R]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def auth: SpecifyAuthScheme[U, T, R]

    Permalink
  7. def body(fs: Seq[(String, String)], encoding: String): RequestT[U, T, R]

    Permalink

    Encodes the given parameters as form data.

    Encodes the given parameters as form data. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  8. def body(fs: (String, String)*): RequestT[U, T, R]

    Permalink

    Encodes the given parameters as form data using utf-8.

    Encodes the given parameters as form data using utf-8. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  9. def body(fs: Map[String, String], encoding: String): RequestT[U, T, R]

    Permalink

    Encodes the given parameters as form data.

    Encodes the given parameters as form data. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  10. def body(fs: Map[String, String]): RequestT[U, T, R]

    Permalink

    Encodes the given parameters as form data using utf-8.

    Encodes the given parameters as form data using utf-8. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  11. def body(b: InputStream): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to application/octet-stream.

  12. def body(b: ByteBuffer): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to application/octet-stream.

  13. def body(b: Array[Byte]): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    If content length is not yet specified, will be set to the length of the given array.

  14. def body(b: String, encoding: String): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to text/plain with the given encoding.

    If content type is not yet specified, will be set to text/plain with the given encoding.

    If content length is not yet specified, will be set to the number of bytes in the string using the given encoding.

  15. def body(b: String): RequestT[U, T, R]

    Permalink

    Uses the utf-8 encoding.

    Uses the utf-8 encoding.

    If content type is not yet specified, will be set to text/plain with utf-8 encoding.

    If content length is not yet specified, will be set to the number of bytes in the string using the utf-8 encoding.

  16. def body[B](b: B)(implicit arg0: BodySerializer[B]): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    Definition Classes
    RequestTExtensions
  17. def body(file: File): RequestT[U, T, R]

    Permalink

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    If content length is not yet specified, will be set to the length of the given file.

    Definition Classes
    RequestTExtensions
  18. val body: RequestBody[R]

    Permalink
  19. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  20. def contentLength(l: Long): RequestT[U, T, R]

    Permalink
  21. def contentLength: Option[Long]

    Permalink
    Definition Classes
    HasHeaders
  22. def contentType(ct: String, encoding: String): RequestT[U, T, R]

    Permalink
  23. def contentType(mt: MediaType): RequestT[U, T, R]

    Permalink
  24. def contentType(ct: String): RequestT[U, T, R]

    Permalink
  25. def contentType: Option[String]

    Permalink
    Definition Classes
    HasHeaders
  26. def cookie(n: String, v: String): RequestT[U, T, R]

    Permalink
  27. def cookie(nv: (String, String)): RequestT[U, T, R]

    Permalink
  28. def cookies(nvs: (String, String)*): RequestT[U, T, R]

    Permalink
  29. def cookies(cs: Iterable[CookieWithMeta]): RequestT[U, T, R]

    Permalink
  30. def cookies(r: Response[_]): RequestT[U, T, R]

    Permalink
  31. def cookies: Seq[CookieWithMeta]

    Permalink
    Definition Classes
    HasHeaders
  32. def delete(uri: Uri): Request[T, R]

    Permalink
  33. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. def followRedirects(fr: Boolean): RequestT[U, T, R]

    Permalink
  35. def get(uri: Uri): Request[T, R]

    Permalink
  36. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  37. def head(uri: Uri): Request[T, R]

    Permalink
  38. def header(k: String, ov: Option[String]): RequestT[U, T, R]

    Permalink
  39. def header(k: String, v: String): RequestT[U, T, R]

    Permalink
  40. def header(k: String, v: String, replaceExisting: Boolean): RequestT[U, T, R]

    Permalink

    Adds the given header to the end of the headers sequence.

    Adds the given header to the end of the headers sequence.

    replaceExisting

    If there's already a header with the same name, should it be dropped?

  41. def header(h: Header, replaceExisting: Boolean = false): RequestT[U, T, R]

    Permalink

    Adds the given header to the end of the headers sequence.

    Adds the given header to the end of the headers sequence.

    replaceExisting

    If there's already a header with the same name, should it be dropped?

  42. def header(h: String): Option[String]

    Permalink
    Definition Classes
    HasHeaders
  43. def headers(hs: Header*): RequestT[U, T, R]

    Permalink
  44. def headers(hs: Map[String, String]): RequestT[U, T, R]

    Permalink
  45. def headers(h: String): Seq[String]

    Permalink
    Definition Classes
    HasHeaders
  46. val headers: Seq[Header]

    Permalink
    Definition Classes
    RequestT → HasHeaders
  47. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  48. def isWebSocket: Boolean

    Permalink
  49. def mapResponse[T2](f: (T) ⇒ T2): RequestT[U, T2, R]

    Permalink
  50. def maxRedirects(n: Int): RequestT[U, T, R]

    Permalink
  51. def method(method: Method, uri: Uri): Request[T, R]

    Permalink
  52. val method: U[Method]

    Permalink
  53. def multipartBody[R2](p1: Part[RequestBody[R2]], ps: Part[RequestBody[R2]]*): RequestT[U, T, R with R2]

    Permalink
  54. def multipartBody[R2](ps: Seq[Part[RequestBody[R2]]]): RequestT[U, T, R with R2]

    Permalink
  55. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  56. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  57. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  58. def options(uri: Uri): Request[T, R]

    Permalink
  59. val options: RequestOptions

    Permalink
  60. def patch(uri: Uri): Request[T, R]

    Permalink
  61. def post(uri: Uri): Request[T, R]

    Permalink
  62. def proxyAuth: SpecifyAuthScheme[U, T, R]

    Permalink
  63. def put(uri: Uri): Request[T, R]

    Permalink
  64. def readTimeout(t: Duration): RequestT[U, T, R]

    Permalink
  65. def redirectToGet(r: Boolean): RequestT[U, T, R]

    Permalink

    When a POST or PUT request is redirected, should the redirect be a POST/PUT as well (with the original body), or should the request be converted to a GET without a body.

    When a POST or PUT request is redirected, should the redirect be a POST/PUT as well (with the original body), or should the request be converted to a GET without a body.

    Note that this only affects 301 and 302 redirects. 303 redirects are always converted, while 307 and 308 redirects always keep the same method.

    See https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections for details.

  66. def response[T2, R2](ra: ResponseAs[T2, R2]): RequestT[U, T2, R with R2]

    Permalink

    Specifies the target type to which the response body should be read.

    Specifies the target type to which the response body should be read. Note that this replaces any previous specifications, which also includes any previous mapResponse invocations.

  67. val response: ResponseAs[T, R]

    Permalink

    Description of how the response body should be handled.

    Description of how the response body should be handled. Needs to be specified upfront so that the response is always consumed and hence there are no requirements on client code to consume it. An exception to this are unsafe streaming and websocket responses, which need to be consumed/closed by the client.

  68. def send[F[_], P](backend: SttpBackend[F, P])(implicit isIdInRequest: IsIdInRequest[U], pEffectFIsR: <:<[P with Effect[F], R]): F[Response[T]]

    Permalink

    Sends the request, using the given backend.

    Sends the request, using the given backend. Only requests for which the method & URI are specified can be sent.

    The required capabilities must be a subset of the capabilities provided by the backend.

    returns

    For synchronous backends (when the effect type is Identity), Response is returned directly and exceptions are thrown. For asynchronous backends (when the effect type is e.g. scala.concurrent.Future), an effect containing the Response is returned. Exceptions are represented as failed effects (e.g. failed futures). The response body is deserialized as specified by this request (see RequestT.response). Known exceptions are converted by backends to one of SttpClientException. Other exceptions are thrown unchanged.

  69. def show(includeBody: Boolean = true, sensitiveHeaders: Set[String] = HeaderNames.SensitiveHeaders): String

    Permalink
  70. def showBasic: String

    Permalink
  71. def streamBody[S](s: Streams[S])(b: BinaryStream): RequestT[U, T, R with S]

    Permalink
  72. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  73. def tag(k: String): Option[Any]

    Permalink
  74. def tag(k: String, v: Any): RequestT[U, T, R]

    Permalink
  75. val tags: Map[String, Any]

    Permalink

    Request-specific tags which can be used by backends for logging, metrics, etc.

    Request-specific tags which can be used by backends for logging, metrics, etc. Not used by default.

  76. def toCurl(implicit isIdInRequest: IsIdInRequest[U]): String

    Permalink
  77. val uri: U[Uri]

    Permalink
  78. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  80. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def send[F[_], P]()(implicit backend: SttpBackend[F, P], pEffectFIsR: <:<[P with Effect[F], R], isIdInRequest: IsIdInRequest[U]): F[Response[T]]

    Permalink

    Sends the request, using the backend from the implicit scope.

    Sends the request, using the backend from the implicit scope. Only requests for which the method & URI are specified can be sent.

    The required capabilities must be a subset of the capabilities provided by the backend.

    returns

    For synchronous backends (when the effect type is Identity), Response is returned directly and exceptions are thrown. For asynchronous backends (when the effect type is e.g. scala.concurrent.Future), an effect containing the Response is returned. Exceptions are represented as failed effects (e.g. failed futures). The response body is deserialized as specified by this request (see RequestT.response). Known exceptions are converted by backends to one of SttpClientException. Other exceptions are thrown unchanged.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) use request.send(backend), providing the backend explicitly

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RequestTExtensions[U, T, R]

Inherited from HasHeaders

Inherited from AnyRef

Inherited from Any

Ungrouped