Class/Object

fm.http.client

DefaultHttpClient

Related Docs: object DefaultHttpClient | package client

Permalink

final case class DefaultHttpClient(proxy: Option[ProxyOptions] = None, defaultMaxLength: Long, defaultHeaders: Headers, useConnectionPool: Boolean, maxConnectionsPerHost: Int, maxRequestQueuePerHost: Int, maxConnectionIdleDuration: FiniteDuration, defaultResponseTimeout: Duration, defaultConnectTimeout: Duration, defaultCharset: Charset, followRedirects: Boolean, maxRedirectCount: Int, disableSSLCertVerification: Boolean, autoDecompress: Boolean) extends HttpClient with Logging with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Logging, HttpClient, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultHttpClient
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Logging
  7. HttpClient
  8. Closeable
  9. AutoCloseable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultHttpClient(proxy: Option[ProxyOptions] = None, defaultMaxLength: Long, defaultHeaders: Headers, useConnectionPool: Boolean, maxConnectionsPerHost: Int, maxRequestQueuePerHost: Int, maxConnectionIdleDuration: FiniteDuration, defaultResponseTimeout: Duration, defaultConnectTimeout: Duration, defaultCharset: Charset, followRedirects: Boolean, maxRedirectCount: Int, disableSSLCertVerification: Boolean, autoDecompress: Boolean)

    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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val autoDecompress: Boolean

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def close(): Unit

    Permalink
    Definition Classes
    DefaultHttpClientHttpClient → Closeable → AutoCloseable
  8. val defaultCharset: Charset

    Permalink
    Definition Classes
    DefaultHttpClientHttpClient
  9. val defaultConnectTimeout: Duration

    Permalink
  10. val defaultHeaders: Headers

    Permalink
    Definition Classes
    DefaultHttpClientHttpClient
  11. val defaultMaxLength: Long

    Permalink
    Definition Classes
    DefaultHttpClientHttpClient
  12. val defaultResponseTimeout: Duration

    Permalink
    Definition Classes
    DefaultHttpClientHttpClient
  13. final def delete(url: String, headers: Headers, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a DELETE request.

    Perform a DELETE request.

    Definition Classes
    HttpClient
  14. final def delete(url: String, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a DELETE request.

    Perform a DELETE request.

    Definition Classes
    HttpClient
  15. final def delete(url: String, headers: Headers): Future[FullResponse]

    Permalink

    Perform a DELETE request.

    Perform a DELETE request.

    Definition Classes
    HttpClient
  16. final def delete(url: String): Future[FullResponse]

    Permalink

    Perform a DELETE request.

    Perform a DELETE request. Always returns a FullResponse because the body will be empty

    Definition Classes
    HttpClient
  17. final def deleteAsync(url: String, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a DELETE request returning an AsyncResponse

    Perform a DELETE request returning an AsyncResponse

    Definition Classes
    HttpClient
  18. final def deleteAsync(url: String, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  19. final def deleteAsync(url: String, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  20. final def deleteAsync(url: String): Future[AsyncResponse]

    Permalink

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a DELETE request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  21. val disableSSLCertVerification: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  23. def execute(r: Request, timeout: Duration): Future[AsyncResponse]

    Permalink

    Execute a Request returning the AsyncResponse

    Execute a Request returning the AsyncResponse

    Definition Classes
    DefaultHttpClientHttpClient
  24. final def execute(r: Request): Future[AsyncResponse]

    Permalink

    Execute a Request returning the AsyncResponse using the defaultResponseTimeout

    Execute a Request returning the AsyncResponse using the defaultResponseTimeout

    Definition Classes
    HttpClient
  25. implicit def executionContext: ExecutionContext

    Permalink

    If you make use of this then you cannot perform any blocking operations on it (especially any Await.result or Await.ready operations) otherwise you will risk a deadlock.

    If you make use of this then you cannot perform any blocking operations on it (especially any Await.result or Await.ready operations) otherwise you will risk a deadlock.

    Definition Classes
    DefaultHttpClientHttpClient
  26. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. val followRedirects: Boolean

    Permalink
  28. final def getAsync(url: String, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  29. final def getAsync(url: String, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  30. final def getAsync(url: String, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  31. final def getAsync(url: String): Future[AsyncResponse]

    Permalink

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a GET request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  32. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def getFull(url: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  34. final def getFull(url: String, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  35. final def getFull(url: String, headers: Headers, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  36. final def getFull(url: String, headers: Headers, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  37. final def getFull(url: String, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  38. final def getFull(url: String, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  39. final def getFull(url: String, headers: Headers): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  40. final def getFull(url: String): Future[FullResponse]

    Permalink

    Perform a GET request returning the FullResponse

    Perform a GET request returning the FullResponse

    Definition Classes
    HttpClient
  41. final def getFullString(url: String, headers: Headers, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  42. final def getFullString(url: String, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  43. final def getFullString(url: String, headers: Headers, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  44. final def getFullString(url: String, headers: Headers, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  45. final def getFullString(url: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  46. final def getFullString(url: String, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  47. final def getFullString(url: String, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  48. final def getFullString(url: String, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  49. final def getFullString(url: String, headers: Headers, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  50. final def getFullString(url: String, headers: Headers, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  51. final def getFullString(url: String, headers: Headers, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  52. final def getFullString(url: String, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  53. final def getFullString(url: String, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  54. final def getFullString(url: String, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  55. final def getFullString(url: String, headers: Headers): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  56. final def getFullString(url: String): Future[FullStringResponse]

    Permalink

    Perform a GET request returning the FullStringResponse

    Perform a GET request returning the FullStringResponse

    Definition Classes
    HttpClient
  57. final def head(url: String, headers: Headers, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a HEAD request.

    Perform a HEAD request. Always returns a FullResponse because the body will be empty

    Definition Classes
    HttpClient
  58. final def head(url: String, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a HEAD request.

    Perform a HEAD request. Always returns a FullResponse because the body will be empty

    Definition Classes
    HttpClient
  59. final def head(url: String, headers: Headers): Future[FullResponse]

    Permalink

    Perform a HEAD request.

    Perform a HEAD request. Always returns a FullResponse because the body will be empty

    Definition Classes
    HttpClient
  60. final def head(url: String): Future[FullResponse]

    Permalink

    Perform a HEAD request.

    Perform a HEAD request. Always returns a FullResponse because the body will be empty

    Definition Classes
    HttpClient
  61. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  62. def logException(request: Request, requestBody: Option[String], ex: Throwable): Unit

    Permalink

    A logging hook that can be used to log the Request and an Exception with no Response.

    A logging hook that can be used to log the Request and an Exception with no Response.

    This will be called asynchronously (but before the resulting Future is completed). This does not log direct calls to the execute() method.

    Definition Classes
    HttpClient
  63. def logSuccess(request: Request, requestBody: Option[String], response: Response): Unit

    Permalink

    A logging hook that can be used to log the Request and a successful Response.

    A logging hook that can be used to log the Request and a successful Response.

    This will be called asynchronously (but before the resulting Future is completed). This does not log direct calls to the execute() method.

    Definition Classes
    HttpClient
  64. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  65. def loggingHooksEnabled: Boolean

    Permalink

    Override this and set to true to enable the logSuccess and logException methods

    Override this and set to true to enable the logSuccess and logException methods

    Definition Classes
    HttpClient
  66. val maxConnectionIdleDuration: FiniteDuration

    Permalink
  67. val maxConnectionsPerHost: Int

    Permalink
  68. val maxRedirectCount: Int

    Permalink
  69. val maxRequestQueuePerHost: Int

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

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

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

    Permalink
    Definition Classes
    AnyRef
  73. final def postAsync(url: String, body: LinkedHttpContent, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  74. final def postAsync(url: String, body: File, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  75. final def postAsync(url: String, body: File, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  76. final def postAsync(url: String, body: File, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  77. final def postAsync(url: String, body: LinkedHttpContent): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  78. final def postAsync(url: String, body: File): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  79. final def postAsync(url: String, body: String, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  80. final def postAsync(url: String, body: String, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  81. final def postAsync(url: String, body: String, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  82. final def postAsync(url: String, body: String): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  83. final def postAsync(url: String, body: Array[Byte], headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  84. final def postAsync(url: String, body: Array[Byte], timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  85. final def postAsync(url: String, body: Array[Byte], headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  86. final def postAsync(url: String, body: Array[Byte]): Future[AsyncResponse]

    Permalink

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a POST request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  87. final def postFull(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  88. final def postFull(url: String, body: String, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  89. final def postFull(url: String, body: String, headers: Headers, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  90. final def postFull(url: String, body: String, headers: Headers, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  91. final def postFull(url: String, body: String, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  92. final def postFull(url: String, body: String, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  93. final def postFull(url: String, body: String, headers: Headers): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  94. final def postFull(url: String, body: String): Future[FullResponse]

    Permalink

    Perform a POST request returning the FullResponse

    Perform a POST request returning the FullResponse

    Definition Classes
    HttpClient
  95. final def postFullString(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  96. final def postFullString(url: String, body: String, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  97. final def postFullString(url: String, body: String, headers: Headers, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  98. final def postFullString(url: String, body: String, headers: Headers, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  99. final def postFullString(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  100. final def postFullString(url: String, body: String, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  101. final def postFullString(url: String, body: String, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  102. final def postFullString(url: String, body: String, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  103. final def postFullString(url: String, body: String, headers: Headers, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  104. final def postFullString(url: String, body: String, headers: Headers, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  105. final def postFullString(url: String, body: String, headers: Headers, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  106. final def postFullString(url: String, body: String, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  107. final def postFullString(url: String, body: String, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  108. final def postFullString(url: String, body: String, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  109. final def postFullString(url: String, body: String, headers: Headers): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  110. final def postFullString(url: String, body: String): Future[FullStringResponse]

    Permalink

    Perform a POST request returning the FullStringResponse

    Perform a POST request returning the FullStringResponse

    Definition Classes
    HttpClient
  111. val proxy: Option[ProxyOptions]

    Permalink
  112. final def puFull(url: String, body: String, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  113. final def putAsync(url: String, body: LinkedHttpContent, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  114. final def putAsync(url: String, body: File, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  115. final def putAsync(url: String, body: File, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  116. final def putAsync(url: String, body: File, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  117. final def putAsync(url: String, body: LinkedHttpContent): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  118. final def putAsync(url: String, body: File): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  119. final def putAsync(url: String, body: String, headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  120. final def putAsync(url: String, body: String, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  121. final def putAsync(url: String, body: String, headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  122. final def putAsync(url: String, body: String): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  123. final def putAsync(url: String, body: Array[Byte], headers: Headers, timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  124. final def putAsync(url: String, body: Array[Byte], timeout: Duration): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  125. final def putAsync(url: String, body: Array[Byte], headers: Headers): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  126. final def putAsync(url: String, body: Array[Byte]): Future[AsyncResponse]

    Permalink

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Perform a PUT request returning an AsyncResponse for reading arbitrarily long response bodies

    Definition Classes
    HttpClient
  127. final def putFull(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  128. final def putFull(url: String, body: String, maxLength: Long, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  129. final def putFull(url: String, body: String, headers: Headers, timeout: Duration): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  130. final def putFull(url: String, body: String, headers: Headers, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  131. final def putFull(url: String, body: String, maxLength: Long): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  132. final def putFull(url: String, body: String, headers: Headers): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  133. final def putFull(url: String, body: String): Future[FullResponse]

    Permalink

    Perform a PUT request returning the FullResponse

    Perform a PUT request returning the FullResponse

    Definition Classes
    HttpClient
  134. final def putFullString(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  135. final def putFullString(url: String, body: String, maxLength: Long, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  136. final def putFullString(url: String, body: String, headers: Headers, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  137. final def putFullString(url: String, body: String, headers: Headers, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  138. final def putFullString(url: String, body: String, headers: Headers, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  139. final def putFullString(url: String, body: String, timeout: Duration, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  140. final def putFullString(url: String, body: String, maxLength: Long, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  141. final def putFullString(url: String, body: String, maxLength: Long, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  142. final def putFullString(url: String, body: String, headers: Headers, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  143. final def putFullString(url: String, body: String, headers: Headers, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  144. final def putFullString(url: String, body: String, headers: Headers, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  145. final def putFullString(url: String, body: String, defaultCharset: Charset): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  146. final def putFullString(url: String, body: String, timeout: Duration): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  147. final def putFullString(url: String, body: String, maxLength: Long): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  148. final def putFullString(url: String, body: String, headers: Headers): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  149. final def putFullString(url: String, body: String): Future[FullStringResponse]

    Permalink

    Perform a PUT request returning the FullStringResponse

    Perform a PUT request returning the FullStringResponse

    Definition Classes
    HttpClient
  150. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  151. val useConnectionPool: Boolean

    Permalink
  152. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  155. final def withBasicAuth(user: String, pass: String): HttpClient

    Permalink

    Return an HttpClient that will use Basic auth for any calls made by it

    Return an HttpClient that will use Basic auth for any calls made by it

    Definition Classes
    HttpClient
  156. final def withDigestAuth(user: String, pass: String): HttpClient

    Permalink

    Return an HttpClient that will use Digest auth for any calls made by it

    Return an HttpClient that will use Digest auth for any calls made by it

    Definition Classes
    HttpClient

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Logging

Inherited from HttpClient

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped