class HttpClient extends Measured

An asynchronous HTTP client.

It allows you to make requests to HTTP servers, and a single client can make requests to any server.

It also allows you to open WebSockets to servers.

The client can also pool HTTP connections.

For pooling to occur, keep-alive must be true on the HttpClientOptions (default is true). In this case connections will be pooled and re-used if there are pending HTTP requests waiting to get a connection, otherwise they will be closed.

This gives the benefits of keep alive when the client is loaded but means we don't keep connections hanging around unnecessarily when there would be no benefits anyway.

The client also supports pipe-lining of requests. Pipe-lining means another request is sent on the same connection before the response from the preceding one has returned. Pipe-lining is not appropriate for all requests.

To enable pipe-lining, it must be enabled on the HttpClientOptions (default is false).

When pipe-lining is enabled the connection will be automatically closed when all in-flight responses have returned and there are no outstanding pending requests to write.

The client is designed to be reused between requests.

Linear Supertypes
Measured, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpClient
  2. Measured
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HttpClient(_asJava: AnyRef)

Value Members

  1. def asJava: AnyRef
    Definition Classes
    HttpClientMeasured
  2. def close(): Unit

    Close the client.

    Close the client. Closing will close down any pooled connections. Clients should always be closed after use.

  3. def connectionHandler(handler: Handler[HttpConnection]): HttpClient

    Set a connection handler for the client.

    Set a connection handler for the client. This handler is called when a new connection is established. * @return a reference to this, so the API can be used fluently

  4. def delete(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP DELETE request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  5. def delete(requestURI: String): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the default host and port.

    Create an HTTP DELETE request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  6. def delete(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP DELETE request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  7. def delete(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP DELETE request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  8. def delete(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP DELETE request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP DELETE request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  9. def delete(host: String, requestURI: String): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the specified host and default port.

    Create an HTTP DELETE request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  10. def delete(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP DELETE request to send to the server at the specified host and port.

    Create an HTTP DELETE request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  11. def delete(options: RequestOptions): HttpClientRequest

    Create an HTTP DELETE request to send to the server with the specified options.

    Create an HTTP DELETE request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  12. def deleteAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  13. def deleteAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP DELETE request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP DELETE request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  14. def get(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP GET request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP GET request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  15. def get(requestURI: String): HttpClientRequest

    Create an HTTP GET request to send to the server at the default host and port.

    Create an HTTP GET request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  16. def get(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP GET request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP GET request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  17. def get(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP GET request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP GET request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  18. def get(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP GET request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP GET request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  19. def get(host: String, requestURI: String): HttpClientRequest

    Create an HTTP GET request to send to the server at the specified host and default port.

    Create an HTTP GET request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  20. def get(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP GET request to send to the server at the specified host and port.

    Create an HTTP GET request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  21. def get(options: RequestOptions): HttpClientRequest

    Create an HTTP GET request to send to the server with the specified options.

    Create an HTTP GET request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  22. def getAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  23. def getAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP GET request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP GET request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  24. def getNow(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP GET request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Sends an HTTP GET request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  25. def getNow(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP GET request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Sends an HTTP GET request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  26. def getNow(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP GET request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Sends an HTTP GET request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  27. def getNow(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP GET request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Sends an HTTP GET request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  28. def head(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP HEAD request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  29. def head(requestURI: String): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the default host and port.

    Create an HTTP HEAD request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  30. def head(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP HEAD request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  31. def head(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP HEAD request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  32. def head(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP HEAD request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP HEAD request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  33. def head(host: String, requestURI: String): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the specified host and default port.

    Create an HTTP HEAD request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  34. def head(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP HEAD request to send to the server at the specified host and port.

    Create an HTTP HEAD request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  35. def head(options: RequestOptions): HttpClientRequest

    Create an HTTP HEAD request to send to the server with the specified options.

    Create an HTTP HEAD request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  36. def headAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  37. def headAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP HEAD request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP HEAD request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  38. def headNow(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP HEAD request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Sends an HTTP HEAD request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  39. def headNow(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP HEAD request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Sends an HTTP HEAD request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  40. def headNow(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP HEAD request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Sends an HTTP HEAD request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  41. def headNow(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP HEAD request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Sends an HTTP HEAD request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  42. def isMetricsEnabled(): Boolean

    Whether the metrics are enabled for this measured object * @return true if metrics are enabled

    Whether the metrics are enabled for this measured object * @return true if metrics are enabled

    Definition Classes
    HttpClientMeasured
  43. def options(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP OPTIONS request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  44. def options(requestURI: String): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the default host and port.

    Create an HTTP OPTIONS request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  45. def options(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP OPTIONS request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  46. def options(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP OPTIONS request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  47. def options(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP OPTIONS request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  48. def options(host: String, requestURI: String): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the specified host and default port.

    Create an HTTP OPTIONS request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  49. def options(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server at the specified host and port.

    Create an HTTP OPTIONS request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  50. def options(options: RequestOptions): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server with the specified options.

    Create an HTTP OPTIONS request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  51. def optionsAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP OPTIONS request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  52. def optionsAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP OPTIONS request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP OPTIONS request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  53. def optionsNow(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP OPTIONS request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Sends an HTTP OPTIONS request to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  54. def optionsNow(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP OPTIONS request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Sends an HTTP OPTIONS request to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  55. def optionsNow(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP OPTIONS request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Sends an HTTP OPTIONS request to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  56. def optionsNow(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClient

    Sends an HTTP OPTIONS request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Sends an HTTP OPTIONS request to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    a reference to this, so the API can be used fluently

  57. def post(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP POST request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP POST request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  58. def post(requestURI: String): HttpClientRequest

    Create an HTTP POST request to send to the server at the default host and port.

    Create an HTTP POST request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  59. def post(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP POST request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP POST request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  60. def post(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP POST request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP POST request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  61. def post(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP POST request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP POST request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  62. def post(host: String, requestURI: String): HttpClientRequest

    Create an HTTP POST request to send to the server at the specified host and default port.

    Create an HTTP POST request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  63. def post(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP POST request to send to the server at the specified host and port.

    Create an HTTP POST request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  64. def post(options: RequestOptions): HttpClientRequest

    Create an HTTP POST request to send to the server with the specified options.

    Create an HTTP POST request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  65. def postAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  66. def postAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP POST request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP POST request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  67. def put(requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP PUT request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    Create an HTTP PUT request to send to the server at the default host and port, specifying a response handler to receive the response * @param requestURI the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  68. def put(requestURI: String): HttpClientRequest

    Create an HTTP PUT request to send to the server at the default host and port.

    Create an HTTP PUT request to send to the server at the default host and port. * @param requestURI the relative URI

    returns

    an HTTP client request object

  69. def put(host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP PUT request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    Create an HTTP PUT request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param host the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  70. def put(port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP PUT request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    Create an HTTP PUT request to send to the server at the specified host and port, specifying a response handler to receive the response * @param port the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  71. def put(options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP PUT request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    Create an HTTP PUT request to send to the server with the specified options, specifying a response handler to receive the response * @param options the request options see RequestOptions

    responseHandler

    the response handler

    returns

    an HTTP client request object

  72. def put(host: String, requestURI: String): HttpClientRequest

    Create an HTTP PUT request to send to the server at the specified host and default port.

    Create an HTTP PUT request to send to the server at the specified host and default port. * @param host the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  73. def put(port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP PUT request to send to the server at the specified host and port.

    Create an HTTP PUT request to send to the server at the specified host and port. * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  74. def put(options: RequestOptions): HttpClientRequest

    Create an HTTP PUT request to send to the server with the specified options.

    Create an HTTP PUT request to send to the server with the specified options. * @param options the request options see RequestOptions

    returns

    an HTTP client request object

  75. def putAbs(absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive the response * @param absoluteURI the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  76. def putAbs(absoluteURI: String): HttpClientRequest

    Create an HTTP PUT request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    Create an HTTP PUT request to send to the server using an absolute URI * @param absoluteURI the absolute URI

    returns

    an HTTP client request object

  77. def redirectHandler(handler: (HttpClientResponse) ⇒ Future[HttpClientRequest]): HttpClient

    Set a redirect handler for the http client.

    Set a redirect handler for the http client.

    The redirect handler is called when a 3xx response is received and the request is configured to follow redirects with io.vertx.scala.core.http.HttpClientRequest#setFollowRedirects.

    The redirect handler is passed the io.vertx.scala.core.http.HttpClientResponse, it can return an io.vertx.scala.core.http.HttpClientRequest or null.

    • when null is returned, the original response is processed by the original request response handler
    • when a new Future<HttpClientRequest> is returned, the client will send this new request

    The new request will get a copy of the previous request headers unless headers are set. In this case, the client assumes that the redirect handler exclusively managers the headers of the new request.

    The handler must return a Future<HttpClientRequest> unsent so the client can further configure it and send it. * @param handler the new redirect handler

    returns

    a reference to this, so the API can be used fluently

  78. def request(method: HttpMethod, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP request to send to the server at the default host and port, specifying a response handler to receive the response * @param method the HTTP method

    Create an HTTP request to send to the server at the default host and port, specifying a response handler to receive the response * @param method the HTTP method

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  79. def request(method: HttpMethod, requestURI: String): HttpClientRequest

    Create an HTTP request to send to the server at the default host and port.

    Create an HTTP request to send to the server at the default host and port. * @param method the HTTP method

    requestURI

    the relative URI

    returns

    an HTTP client request object

  80. def request(method: HttpMethod, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param method the HTTP method

    Create an HTTP request to send to the server at the specified host and default port, specifying a response handler to receive the response * @param method the HTTP method

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  81. def request(method: HttpMethod, port: Int, host: String, requestURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP request to send to the server at the specified host and port, specifying a response handler to receive the response * @param method the HTTP method

    Create an HTTP request to send to the server at the specified host and port, specifying a response handler to receive the response * @param method the HTTP method

    port

    the port

    host

    the host

    requestURI

    the relative URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  82. def request(method: HttpMethod, options: RequestOptions, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP request to send to the server with the specified options, specifying a response handler to receive * @param method the HTTP method

    Create an HTTP request to send to the server with the specified options, specifying a response handler to receive * @param method the HTTP method

    options

    the request options see RequestOptions

    returns

    an HTTP client request object

  83. def request(method: HttpMethod, host: String, requestURI: String): HttpClientRequest

    Create an HTTP request to send to the server at the specified host and default port.

    Create an HTTP request to send to the server at the specified host and default port. * @param method the HTTP method

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  84. def request(method: HttpMethod, port: Int, host: String, requestURI: String): HttpClientRequest

    Create an HTTP request to send to the server at the specified host and port.

    Create an HTTP request to send to the server at the specified host and port. * @param method the HTTP method

    port

    the port

    host

    the host

    requestURI

    the relative URI

    returns

    an HTTP client request object

  85. def request(method: HttpMethod, options: RequestOptions): HttpClientRequest

    Create an HTTP request to send to the server with the specified options.

    Create an HTTP request to send to the server with the specified options. * @param method the HTTP method

    options

    the request options see RequestOptions

    returns

    an HTTP client request object

  86. def requestAbs(method: HttpMethod, absoluteURI: String, responseHandler: Handler[HttpClientResponse]): HttpClientRequest

    Create an HTTP request to send to the server using an absolute URI, specifying a response handler to receive the response * @param method the HTTP method

    Create an HTTP request to send to the server using an absolute URI, specifying a response handler to receive the response * @param method the HTTP method

    absoluteURI

    the absolute URI

    responseHandler

    the response handler

    returns

    an HTTP client request object

  87. def requestAbs(method: HttpMethod, absoluteURI: String): HttpClientRequest

    Create an HTTP request to send to the server using an absolute URI * @param method the HTTP method

    Create an HTTP request to send to the server using an absolute URI * @param method the HTTP method

    absoluteURI

    the absolute URI

    returns

    an HTTP client request object

  88. def websocket(requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  89. def websocket(requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  90. def websocket(requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  91. def websocket(requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  92. def websocket(requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  93. def websocket(requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  94. def websocket(requestURI: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port * @param requestURI the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  95. def websocket(requestURI: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket at the relative request URI using the default host and port * @param requestURI the relative URI

    Connect a WebSocket at the relative request URI using the default host and port * @param requestURI the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  96. def websocket(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    Connect a WebSocket to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  97. def websocket(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    Connect a WebSocket to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  98. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  99. def websocket(options: RequestOptions, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket with the specified options, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  100. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  101. def websocket(options: RequestOptions, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket with the specified options, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  102. def websocket(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified host, relative request URI and default port with the specified headers and using the specified version of WebSockets * @param host the host

    Connect a WebSocket to the specified host, relative request URI and default port with the specified headers and using the specified version of WebSockets * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  103. def websocket(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified host, relative request URI and default port with the specified headers and using the specified version of WebSockets * @param host the host

    Connect a WebSocket to the specified host, relative request URI and default port with the specified headers and using the specified version of WebSockets * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  104. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  105. def websocket(options: RequestOptions, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket with the specified options, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  106. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  107. def websocket(options: RequestOptions, headers: MultiMap, version: WebsocketVersion, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket with the specified optionsI, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    Connect a WebSocket with the specified optionsI, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  108. def websocket(host: String, requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified host,relative request UR, and default port and with the specified headers * @param host the host

    Connect a WebSocket to the specified host,relative request UR, and default port and with the specified headers * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  109. def websocket(host: String, requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified host,relative request UR, and default port and with the specified headers * @param host the host

    Connect a WebSocket to the specified host,relative request UR, and default port and with the specified headers * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  110. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, and with the specified headers * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, and with the specified headers * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  111. def websocket(options: RequestOptions, headers: MultiMap, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket with the specified options, and with the specified headers * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options, and with the specified headers * @param options the request options see RequestOptions

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  112. def websocket(port: Int, host: String, requestURI: String, headers: MultiMap, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI, and with the specified headers * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI, and with the specified headers * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  113. def websocket(options: RequestOptions, headers: MultiMap, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket with the specified options, and with the specified headers * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options, and with the specified headers * @param options the request options see RequestOptions

    headers

    the headers

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  114. def websocket(host: String, requestURI: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the host and relative request URI and default port * @param host the host

    Connect a WebSocket to the host and relative request URI and default port * @param host the host

    requestURI

    the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  115. def websocket(host: String, requestURI: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the host and relative request URI and default port * @param host the host

    Connect a WebSocket to the host and relative request URI and default port * @param host the host

    requestURI

    the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  116. def websocket(port: Int, host: String, requestURI: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI * @param port the port

    host

    the host

    requestURI

    the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  117. def websocket(options: RequestOptions, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket with the specified options * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options * @param options the request options see RequestOptions

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  118. def websocket(port: Int, host: String, requestURI: String, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket to the specified port, host and relative request URI * @param port the port

    Connect a WebSocket to the specified port, host and relative request URI * @param port the port

    host

    the host

    requestURI

    the relative URI

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  119. def websocket(options: RequestOptions, wsConnect: Handler[WebSocket]): HttpClient

    Connect a WebSocket with the specified options * @param options the request options see RequestOptions

    Connect a WebSocket with the specified options * @param options the request options see RequestOptions

    wsConnect

    handler that will be called with the websocket when connected

    returns

    a reference to this, so the API can be used fluently

  120. def websocketAbs(url: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String, wsConnect: Handler[WebSocket], failureHandler: Handler[Throwable]): HttpClient

    Connect a WebSocket with the specified absolute url, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols.

    Connect a WebSocket with the specified absolute url, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols. * @param url the absolute url

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    wsConnect

    handler that will be called with the websocket when connected

    failureHandler

    handler that will be called if websocket connection fails

    returns

    a reference to this, so the API can be used fluently

  121. def websocketStream(requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String): ReadStream[WebSocket]

    Create a WebSocket stream at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    Create a WebSocket stream at the relative request URI using the default host and port, the specified headers, the specified version of WebSockets and the specified sub protocols * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  122. def websocketStream(requestURI: String, headers: MultiMap, version: WebsocketVersion): ReadStream[WebSocket]

    Create a WebSocket stream at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    Create a WebSocket stream at the relative request URI using the default host and port, the specified headers and the specified version of WebSockets * @param requestURI the relative URI

    headers

    the headers

    version

    the websocket version

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  123. def websocketStream(requestURI: String, headers: MultiMap): ReadStream[WebSocket]

    Create a WebSocket stream at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    Create a WebSocket stream at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    headers

    the headers

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  124. def websocketStream(requestURI: String): ReadStream[WebSocket]

    Create a WebSocket stream at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    Create a WebSocket stream at the relative request URI using the default host and port and the specified headers * @param requestURI the relative URI

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  125. def websocketStream(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String): ReadStream[WebSocket]

    Create a WebSocket stream to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    Create a WebSocket stream to the specified host, relative request URI and default port, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  126. def websocketStream(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String): ReadStream[WebSocket]

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  127. def websocketStream(options: RequestOptions, headers: MultiMap, version: WebsocketVersion, subProtocols: String): ReadStream[WebSocket]

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  128. def websocketStream(host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion): ReadStream[WebSocket]

    Create a WebSocket stream with the specified options and with the specified headers and using the specified version of WebSockets * @param host the host

    Create a WebSocket stream with the specified options and with the specified headers and using the specified version of WebSockets * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  129. def websocketStream(port: Int, host: String, requestURI: String, headers: MultiMap, version: WebsocketVersion): ReadStream[WebSocket]

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers and using the specified version of WebSockets * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    version

    the websocket version

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  130. def websocketStream(options: RequestOptions, headers: MultiMap, version: WebsocketVersion): ReadStream[WebSocket]

    Create a WebSocket stream with the specified options, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    Create a WebSocket stream with the specified options, with the specified headers and using the specified version of WebSockets * @param options the request options see RequestOptions

    headers

    the headers

    version

    the websocket version

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  131. def websocketStream(host: String, requestURI: String, headers: MultiMap): ReadStream[WebSocket]

    Create a WebSocket stream to the specified host, relative request URI and default port and with the specified headers * @param host the host

    Create a WebSocket stream to the specified host, relative request URI and default port and with the specified headers * @param host the host

    requestURI

    the relative URI

    headers

    the headers

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  132. def websocketStream(port: Int, host: String, requestURI: String, headers: MultiMap): ReadStream[WebSocket]

    Create a WebSocket stream to the specified port, host and relative request URI, and with the specified headers * @param port the port

    Create a WebSocket stream to the specified port, host and relative request URI, and with the specified headers * @param port the port

    host

    the host

    requestURI

    the relative URI

    headers

    the headers

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  133. def websocketStream(options: RequestOptions, headers: MultiMap): ReadStream[WebSocket]

    Create a WebSocket stream with the specified options, and with the specified headers * @param options the request options see RequestOptions

    Create a WebSocket stream with the specified options, and with the specified headers * @param options the request options see RequestOptions

    headers

    the headers

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  134. def websocketStream(host: String, requestURI: String): ReadStream[WebSocket]

    Create a WebSocket stream to the specified host, relative request URI and default port * @param host the host

    Create a WebSocket stream to the specified host, relative request URI and default port * @param host the host

    requestURI

    the relative URI

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  135. def websocketStream(port: Int, host: String, requestURI: String): ReadStream[WebSocket]

    Create a WebSocket stream to the specified port, host and relative request URI * @param port the port

    Create a WebSocket stream to the specified port, host and relative request URI * @param port the port

    host

    the host

    requestURI

    the relative URI

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  136. def websocketStream(options: RequestOptions): ReadStream[WebSocket]

    Create a WebSocket stream with the specified options * @param options the request options see RequestOptions

    Create a WebSocket stream with the specified options * @param options the request options see RequestOptions

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket

  137. def websocketStreamAbs(url: String, headers: MultiMap, version: WebsocketVersion, subProtocols: String): ReadStream[WebSocket]

    Create a WebSocket stream with the specified absolute url, the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols.

    Create a WebSocket stream with the specified absolute url, the specified headers, using the specified version of WebSockets, and the specified websocket sub protocols. * @param url the absolute url

    headers

    the headers

    version

    the websocket version

    subProtocols

    the subprotocols to use

    returns

    a stream emitting a WebSocket event when the client connection has been upgraded to a websocket