Class

com.softwaremill.sttp

RequestT

Related Doc: package sttp

Permalink

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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestT
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RequestTExtensions
  7. AnyRef
  8. 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[S], headers: Seq[(String, String)], response: ResponseAs[T, S], options: RequestOptions, tags: Map[String, Any])

    Permalink

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, S]

    Permalink
  5. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    RequestTExtensions
  18. val body: RequestBody[S]

    Permalink
  19. def clone(): AnyRef

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

    Permalink
  21. def contentType(ct: String, encoding: String): RequestT[U, T, S]

    Permalink
  22. def contentType(ct: String): RequestT[U, T, S]

    Permalink
  23. def delete(uri: Uri): Request[T, S]

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

    Permalink
    Definition Classes
    AnyRef
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def followRedirects(fr: Boolean): RequestT[U, T, S]

    Permalink
  27. def get(uri: Uri): Request[T, S]

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

    Permalink
    Definition Classes
    AnyRef → Any
  29. def head(uri: Uri): Request[T, S]

    Permalink
  30. def header(k: String, v: String, replaceExisting: Boolean = false): RequestT[U, T, S]

    Permalink
  31. def headers(hs: (String, String)*): RequestT[U, T, S]

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

    Permalink
  33. val headers: Seq[(String, String)]

    Permalink
  34. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  35. def mapResponse[T2](f: (T) ⇒ T2): RequestT[U, T2, S]

    Permalink
  36. def maxRedirects(n: Int): RequestT[U, T, S]

    Permalink
  37. val method: U[Method]

    Permalink
  38. def multipartBody(p1: Multipart, ps: Multipart*): RequestT[U, T, S]

    Permalink
  39. def multipartBody(ps: Seq[Multipart]): RequestT[U, T, S]

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

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

    Permalink
    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  43. def options(uri: Uri): Request[T, S]

    Permalink
  44. val options: RequestOptions

    Permalink
  45. def patch(uri: Uri): Request[T, S]

    Permalink
  46. def post(uri: Uri): Request[T, S]

    Permalink
  47. def proxyAuth: SpecifyAuthScheme[U, T, S]

    Permalink
  48. def put(uri: Uri): Request[T, S]

    Permalink
  49. def readTimeout(t: Duration): RequestT[U, T, S]

    Permalink
  50. def response[T2, S2 >: S](ra: ResponseAs[T2, S2]): RequestT[U, T2, S2]

    Permalink
  51. val response: ResponseAs[T, S]

    Permalink
  52. def send[R[_]]()(implicit backend: SttpBackend[R, S], isIdInRequest: IsIdInRequest[U]): R[Response[T]]

    Permalink
  53. def streamBody[S2 >: S](b: S2): RequestT[U, T, S2]

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

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

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

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

    Permalink
  58. val uri: U[Uri]

    Permalink
  59. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def wait(arg0: Long, arg1: Int): Unit

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RequestTExtensions[U, T, S]

Inherited from AnyRef

Inherited from Any

Ungrouped