public class HttpClient extends Object implements Measured
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 preceeding 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.
NOTE: This class has been automatically generated from theoriginal
non RX-ified interface using Vert.x codegen.Constructor and Description |
---|
HttpClient(HttpClient delegate) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the client.
|
HttpClientRequest |
delete(int port,
String host,
String requestURI)
Create an HTTP DELETE request to send to the server at the specified host and port.
|
HttpClientRequest |
delete(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP DELETE request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
delete(String requestURI)
Create an HTTP DELETE request to send to the server at the default host and port.
|
HttpClientRequest |
delete(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP DELETE request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
delete(String host,
String requestURI)
Create an HTTP DELETE request to send to the server at the specified host and default port.
|
HttpClientRequest |
delete(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
deleteAbs(String absoluteURI)
Create an HTTP DELETE request to send to the server using an absolute URI
|
HttpClientRequest |
deleteAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClientRequest |
get(int port,
String host,
String requestURI)
Create an HTTP GET request to send to the server at the specified host and port.
|
HttpClientRequest |
get(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP GET request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
get(String requestURI)
Create an HTTP GET request to send to the server at the default host and port.
|
HttpClientRequest |
get(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP GET request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
get(String host,
String requestURI)
Create an HTTP GET request to send to the server at the specified host and default port.
|
HttpClientRequest |
get(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
getAbs(String absoluteURI)
Create an HTTP GET request to send to the server using an absolute URI
|
HttpClientRequest |
getAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
Object |
getDelegate() |
HttpClient |
getNow(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP GET request to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClient |
getNow(String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP GET request to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClient |
getNow(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP GET request to the server at the specified host and default port, specifying a response handler to receive
the response
|
HttpClientRequest |
head(int port,
String host,
String requestURI)
Create an HTTP HEAD request to send to the server at the specified host and port.
|
HttpClientRequest |
head(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP HEAD request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
head(String requestURI)
Create an HTTP HEAD request to send to the server at the default host and port.
|
HttpClientRequest |
head(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP HEAD request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
head(String host,
String requestURI)
Create an HTTP HEAD request to send to the server at the specified host and default port.
|
HttpClientRequest |
head(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
headAbs(String absoluteURI)
Create an HTTP HEAD request to send to the server using an absolute URI
|
HttpClientRequest |
headAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClient |
headNow(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP HEAD request to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClient |
headNow(String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP HEAD request to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClient |
headNow(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP HEAD request to the server at the specified host and default port, specifying a response handler to receive
the response
|
boolean |
isMetricsEnabled()
Whether the metrics are enabled for this measured object
|
static HttpClient |
newInstance(HttpClient arg) |
HttpClientRequest |
options(int port,
String host,
String requestURI)
Create an HTTP OPTIONS request to send to the server at the specified host and port.
|
HttpClientRequest |
options(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP OPTIONS request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
options(String requestURI)
Create an HTTP OPTIONS request to send to the server at the default host and port.
|
HttpClientRequest |
options(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP OPTIONS request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
options(String host,
String requestURI)
Create an HTTP OPTIONS request to send to the server at the specified host and default port.
|
HttpClientRequest |
options(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
optionsAbs(String absoluteURI)
Create an HTTP OPTIONS request to send to the server using an absolute URI
|
HttpClientRequest |
optionsAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP OPTIONS request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClient |
optionsNow(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP OPTIONS request to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClient |
optionsNow(String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP OPTIONS request to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClient |
optionsNow(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Sends an HTTP OPTIONS request to the server at the specified host and default port, specifying a response handler to receive
the response
|
HttpClientRequest |
post(int port,
String host,
String requestURI)
Create an HTTP POST request to send to the server at the specified host and port.
|
HttpClientRequest |
post(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP POST request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
post(String requestURI)
Create an HTTP POST request to send to the server at the default host and port.
|
HttpClientRequest |
post(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP POST request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
post(String host,
String requestURI)
Create an HTTP POST request to send to the server at the specified host and default port.
|
HttpClientRequest |
post(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
postAbs(String absoluteURI)
Create an HTTP POST request to send to the server using an absolute URI
|
HttpClientRequest |
postAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClientRequest |
put(int port,
String host,
String requestURI)
Create an HTTP PUT request to send to the server at the specified host and port.
|
HttpClientRequest |
put(int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP PUT request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
put(String requestURI)
Create an HTTP PUT request to send to the server at the default host and port.
|
HttpClientRequest |
put(String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP PUT request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
put(String host,
String requestURI)
Create an HTTP PUT request to send to the server at the specified host and default port.
|
HttpClientRequest |
put(String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
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
|
HttpClientRequest |
putAbs(String absoluteURI)
Create an HTTP PUT request to send to the server using an absolute URI
|
HttpClientRequest |
putAbs(String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClientRequest |
request(HttpMethod method,
int port,
String host,
String requestURI)
Create an HTTP request to send to the server at the specified host and port.
|
HttpClientRequest |
request(HttpMethod method,
int port,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP request to send to the server at the specified host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
request(HttpMethod method,
String requestURI)
Create an HTTP request to send to the server at the default host and port.
|
HttpClientRequest |
request(HttpMethod method,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP request to send to the server at the default host and port, specifying a response handler to receive
the response
|
HttpClientRequest |
request(HttpMethod method,
String host,
String requestURI)
Create an HTTP request to send to the server at the specified host and default port.
|
HttpClientRequest |
request(HttpMethod method,
String host,
String requestURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP request to send to the server at the specified host and default port, specifying a response handler to receive
the response
|
HttpClientRequest |
requestAbs(HttpMethod method,
String absoluteURI)
Create an HTTP request to send to the server using an absolute URI
|
HttpClientRequest |
requestAbs(HttpMethod method,
String absoluteURI,
Handler<HttpClientResponse> responseHandler)
Create an HTTP request to send to the server using an absolute URI, specifying a response handler to receive
the response
|
HttpClient |
websocket(int port,
String host,
String requestURI,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the specified port, host and relative request URI
|
HttpClient |
websocket(int port,
String host,
String requestURI,
MultiMap headers,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the specified port, host and relative request URI, and with the specified headers
|
HttpClient |
websocket(int port,
String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the specified port, host and relative request URI, with the specified headers and using
the specified version of WebSockets
|
HttpClient |
websocket(int port,
String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols,
Handler<WebSocket> wsConnect)
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
|
HttpClient |
websocket(String requestURI,
Handler<WebSocket> wsConnect)
Connect a WebSocket at the relative request URI using the default host and port
|
HttpClient |
websocket(String requestURI,
MultiMap headers,
Handler<WebSocket> wsConnect)
Connect a WebSocket at the relative request URI using the default host and port and the specified headers
|
HttpClient |
websocket(String requestURI,
MultiMap headers,
WebsocketVersion version,
Handler<WebSocket> wsConnect)
Connect a WebSocket at the relative request URI using the default host and port, the specified headers and the
specified version of WebSockets
|
HttpClient |
websocket(String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols,
Handler<WebSocket> wsConnect)
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
|
HttpClient |
websocket(String host,
String requestURI,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the host and relative request URI and default port
|
HttpClient |
websocket(String host,
String requestURI,
MultiMap headers,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the specified host,relative request UR, and default port and with the specified headers
|
HttpClient |
websocket(String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
Handler<WebSocket> wsConnect)
Connect a WebSocket to the specified host, relative request URI and default port with the specified headers and using
the specified version of WebSockets
|
HttpClient |
websocket(String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols,
Handler<WebSocket> wsConnect)
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
|
WebSocketStream |
websocketStream(int port,
String host,
String requestURI)
Create a WebSocket stream to the specified port, host and relative request URI
|
WebSocketStream |
websocketStream(int port,
String host,
String requestURI,
MultiMap headers)
Create a WebSocket stream to the specified port, host and relative request URI, and with the specified headers
|
WebSocketStream |
websocketStream(int port,
String host,
String requestURI,
MultiMap headers,
WebsocketVersion version)
Create a WebSocket stream to the specified port, host and relative request URI, with the specified headers and using
the specified version of WebSockets
|
WebSocketStream |
websocketStream(int port,
String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols)
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
|
WebSocketStream |
websocketStream(String requestURI)
Create a WebSocket stream at the relative request URI using the default host and port and the specified headers
|
WebSocketStream |
websocketStream(String requestURI,
MultiMap headers)
Create a WebSocket stream at the relative request URI using the default host and port and the specified headers
|
WebSocketStream |
websocketStream(String requestURI,
MultiMap headers,
WebsocketVersion version)
Create a WebSocket stream at the relative request URI using the default host and port, the specified headers and the
specified version of WebSockets
|
WebSocketStream |
websocketStream(String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols)
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
|
WebSocketStream |
websocketStream(String host,
String requestURI)
Create a WebSocket stream to the specified host, relative request URI and default port
|
WebSocketStream |
websocketStream(String host,
String requestURI,
MultiMap headers)
Create a WebSocket stream to the specified host, relative request URI and default port and with the specified headers
|
WebSocketStream |
websocketStream(String host,
String requestURI,
MultiMap headers,
WebsocketVersion version)
Create a WebSocket stream to the specified host, relative request URI and default port and with the specified headers and using
the specified version of WebSockets
|
WebSocketStream |
websocketStream(String host,
String requestURI,
MultiMap headers,
WebsocketVersion version,
String subProtocols)
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
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
newInstance
public HttpClient(HttpClient delegate)
public Object getDelegate()
getDelegate
in interface Measured
public boolean isMetricsEnabled()
isMetricsEnabled
in interface Measured
public HttpClientRequest request(HttpMethod method, int port, String host, String requestURI)
method
- the HTTP methodport
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest request(HttpMethod method, String host, String requestURI)
method
- the HTTP methodhost
- the hostrequestURI
- the relative URIpublic HttpClientRequest request(HttpMethod method, int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
method
- the HTTP methodport
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest request(HttpMethod method, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
method
- the HTTP methodhost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest request(HttpMethod method, String requestURI)
method
- the HTTP methodrequestURI
- the relative URIpublic HttpClientRequest request(HttpMethod method, String requestURI, Handler<HttpClientResponse> responseHandler)
method
- the HTTP methodrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest requestAbs(HttpMethod method, String absoluteURI)
method
- the HTTP methodabsoluteURI
- the absolute URIpublic HttpClientRequest requestAbs(HttpMethod method, String absoluteURI, Handler<HttpClientResponse> responseHandler)
method
- the HTTP methodabsoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClientRequest get(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest get(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest get(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest get(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest get(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest get(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest getAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest getAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClient getNow(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient getNow(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient getNow(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest post(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest post(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest post(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest post(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest post(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest post(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest postAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest postAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClientRequest head(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest head(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest head(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest head(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest head(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest head(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest headAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest headAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClient headNow(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient headNow(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient headNow(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest options(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest options(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest options(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest options(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest options(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest options(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest optionsAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest optionsAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClient optionsNow(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient optionsNow(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClient optionsNow(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest put(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest put(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest put(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest put(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest put(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest put(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest putAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest putAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClientRequest delete(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic HttpClientRequest delete(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic HttpClientRequest delete(int port, String host, String requestURI, Handler<HttpClientResponse> responseHandler)
port
- the porthost
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest delete(String host, String requestURI, Handler<HttpClientResponse> responseHandler)
host
- the hostrequestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest delete(String requestURI)
requestURI
- the relative URIpublic HttpClientRequest delete(String requestURI, Handler<HttpClientResponse> responseHandler)
requestURI
- the relative URIresponseHandler
- the response handlerpublic HttpClientRequest deleteAbs(String absoluteURI)
absoluteURI
- the absolute URIpublic HttpClientRequest deleteAbs(String absoluteURI, Handler<HttpClientResponse> responseHandler)
absoluteURI
- the absolute URIresponseHandler
- the response handlerpublic HttpClient websocket(int port, String host, String requestURI, Handler<WebSocket> wsConnect)
port
- the porthost
- the hostrequestURI
- the relative URIwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String host, String requestURI, Handler<WebSocket> wsConnect)
host
- the hostrequestURI
- the relative URIwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(int port, String host, String requestURI, MultiMap headers, Handler<WebSocket> wsConnect)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headerswsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String host, String requestURI, MultiMap headers, Handler<WebSocket> wsConnect)
host
- the hostrequestURI
- the relative URIheaders
- the headerswsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(int port, String host, String requestURI, MultiMap headers, WebsocketVersion version, Handler<WebSocket> wsConnect)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String host, String requestURI, MultiMap headers, WebsocketVersion version, Handler<WebSocket> wsConnect)
host
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(int port, String host, String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols, Handler<WebSocket> wsConnect)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocols to usewsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String host, String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols, Handler<WebSocket> wsConnect)
host
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocols to usewsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String requestURI, Handler<WebSocket> wsConnect)
requestURI
- the relative URIwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String requestURI, MultiMap headers, Handler<WebSocket> wsConnect)
requestURI
- the relative URIheaders
- the headerswsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String requestURI, MultiMap headers, WebsocketVersion version, Handler<WebSocket> wsConnect)
requestURI
- the relative URIheaders
- the headersversion
- the websocket versionwsConnect
- handler that will be called with the websocket when connectedpublic HttpClient websocket(String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols, Handler<WebSocket> wsConnect)
requestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocolswsConnect
- handler that will be called with the websocket when connectedpublic WebSocketStream websocketStream(int port, String host, String requestURI)
port
- the porthost
- the hostrequestURI
- the relative URIpublic WebSocketStream websocketStream(String host, String requestURI)
host
- the hostrequestURI
- the relative URIpublic WebSocketStream websocketStream(int port, String host, String requestURI, MultiMap headers)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headerspublic WebSocketStream websocketStream(String host, String requestURI, MultiMap headers)
host
- the hostrequestURI
- the relative URIheaders
- the headerspublic WebSocketStream websocketStream(int port, String host, String requestURI, MultiMap headers, WebsocketVersion version)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionpublic WebSocketStream websocketStream(String host, String requestURI, MultiMap headers, WebsocketVersion version)
host
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionpublic WebSocketStream websocketStream(int port, String host, String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols)
port
- the porthost
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocols to usepublic WebSocketStream websocketStream(String host, String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols)
host
- the hostrequestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocols to usepublic WebSocketStream websocketStream(String requestURI)
requestURI
- the relative URIpublic WebSocketStream websocketStream(String requestURI, MultiMap headers)
requestURI
- the relative URIheaders
- the headerspublic WebSocketStream websocketStream(String requestURI, MultiMap headers, WebsocketVersion version)
requestURI
- the relative URIheaders
- the headersversion
- the websocket versionpublic WebSocketStream websocketStream(String requestURI, MultiMap headers, WebsocketVersion version, String subProtocols)
requestURI
- the relative URIheaders
- the headersversion
- the websocket versionsubProtocols
- the subprotocolspublic void close()
public static HttpClient newInstance(HttpClient arg)
Copyright © 2015. All Rights Reserved.