Values | |
clientAuth | shared clientAuth clientAuth |
connect | shared connect connect |
delete | shared delete delete |
get | shared get get |
goAway | shared goAway goAway |
head | shared head head |
http2Settings | shared http2Settings http2Settings |
httpClientOptions | shared httpClientOptions httpClientOptions |
httpMethod | shared httpMethod httpMethod |
httpServerOptions | shared httpServerOptions httpServerOptions |
httpVersion | shared httpVersion httpVersion |
http_1_0 | shared http_1_0 http_1_0 |
http_1_1 | shared http_1_1 http_1_1 |
http_2 | shared http_2 http_2 |
none | shared none none No client authentication is requested or required. |
options | shared options options |
other | shared other other |
patch | shared patch patch |
post | shared post post |
put | shared put put |
request | shared request request Accept authentication if presented by client. If this option is set and the client chooses not to provide authentication information about itself, the negotiations will continue. |
requestOptions | shared requestOptions requestOptions |
required | shared required required Require client to present authentication, if not presented then negotiations will be declined. |
trace | shared trace trace |
v00 | shared v00 v00 |
v07 | shared v07 v07 |
v08 | shared v08 v08 |
v13 | shared v13 v13 |
webSocketFrame | shared webSocketFrame webSocketFrame |
websocketVersion | shared websocketVersion websocketVersion |
Interfaces | |
WebSocketBase | shared WebSocketBase Base WebSocket implementation. It implements both and so it can be used with Pump to pump data with flow control. |
Classes | |
ClientAuth | shared abstract ClientAuth Configures the engine to require/request client authentication. Created by manishk on 10/2/2015. |
GoAway | shared GoAway A frame. |
Http2Settings | shared Http2Settings HTTP2 settings, the settings is initialized with the default HTTP/2 values. The settings expose the parameters defined by the HTTP/2 specification, as well as extra settings for protocol extensions. |
HttpClient | shared HttpClient 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. |
HttpClientOptions | shared HttpClientOptions Options describing how an HttpClient will make connections. |
HttpClientRequest | shared HttpClientRequest Represents a client-side HTTP request. Instances are created by an HttpClient instance, via one of the methods corresponding to the specific HTTP methods, or the generic request methods. On creation the request will not have been written to the wire. Once a request has been obtained, headers can be set on it, and data can be written to its body if required. Once you are ready to send the request, one of the end methods should be called. Nothing is actually sent until the request has been internally assigned an HTTP connection. The HttpClient instance will return an instance of this class immediately, even if there are no HTTP connections available in the pool. Any requests sent before a connection is assigned will be queued internally and actually sent when an HTTP connection becomes available from the pool. The headers of the request are queued for writing either when the end method is called, or, when the first part of the body is written, whichever occurs first. This class supports both chunked and non-chunked HTTP. It implements WriteStream so it can be used with Pump to pump data with flow control. An example of using this class is as follows: |
HttpClientResponse | shared HttpClientResponse Represents a client-side HTTP response. Vert.x provides you with one of these via the handler that was provided when creating the HttpClientRequest or that was set on the HttpClientRequest instance. It implements ReadStream so it can be used with Pump to pump data with flow control. |
HttpConnection | shared HttpConnection Represents an HTTP connection. HTTP/1.x connection provides an limited implementation, the following methods are implemented:
|
HttpFrame | shared HttpFrame An HTTP/2 frame. |
HttpMethod | shared abstract HttpMethod Represents an HTTP method |
HttpServer | shared HttpServer An HTTP and WebSockets server. You receive HTTP requests by providing a requestHandler. As requests arrive on the server the handler will be called with the requests. You receive WebSockets by providing a websocketHandler. As WebSocket connections arrive on the server, the WebSocket is passed to the handler. |
HttpServerFileUpload | shared HttpServerFileUpload Represents an file upload from an HTML FORM. |
HttpServerOptions | shared HttpServerOptions Represents options used by an HttpServer instance |
HttpServerRequest | shared HttpServerRequest Represents a server-side HTTP request. Instances are created for each request and passed to the user via a handler. Each instance of this class is associated with a corresponding HttpServerResponse instance via response. It implements ReadStream so it can be used with Pump to pump data with flow control. |
HttpServerResponse | shared HttpServerResponse Represents a server-side HTTP response. An instance of this is created and associated to every instance of HttpServerRequest that. It allows the developer to control the HTTP response that is sent back to the client for a particular HTTP request. It contains methods that allow HTTP headers and trailers to be set, and for a body to be written out to the response. It also allows files to be streamed by the kernel directly from disk to the outgoing HTTP connection, bypassing user space altogether (where supported by the underlying operating system). This is a very efficient way of serving files from the server since buffers do not have to be read one by one from the file and written to the outgoing socket. It implements WriteStream so it can be used with Pump to pump data with flow control. |
HttpVersion | shared abstract HttpVersion Represents the version of the HTTP protocol. |
RequestOptions | shared RequestOptions Options describing how an HttpClient will make connect to make a request. |
ServerWebSocket | shared ServerWebSocket Represents a server side WebSocket. Instances of this class are passed into a websocketHandler or provided when a WebSocket handshake is manually upgradeed. |
WebSocket | shared WebSocket Represents a client-side WebSocket. |
WebSocketFrame | shared WebSocketFrame A WebSocket frame that represents either text or binary data. A WebSocket message is composed of one or more WebSocket frames. If there is a just a single frame in the message then a single text or binary frame should be created with final = true. If there are more than one frames in the message, then the first frame should be a text or binary frame with final = false, followed by one or more continuation frames. The last continuation frame should have final = true. |
WebsocketVersion | shared abstract WebsocketVersion Represents the WebSocket version |
clientAuth | shared clientAuth |
connect | shared connect |
delete | shared delete |
get | shared get |
goAway | shared goAway |
head | shared head |
http2Settings | shared http2Settings |
httpClientOptions | shared httpClientOptions |
httpMethod | shared httpMethod |
httpServerOptions | shared httpServerOptions |
httpVersion | shared httpVersion |
http_1_0 | shared http_1_0 |
http_1_1 | shared http_1_1 |
http_2 | shared http_2 |
none | shared none No client authentication is requested or required. |
options | shared options |
other | shared other |
patch | shared patch |
post | shared post |
put | shared put |
request | shared request Accept authentication if presented by client. If this option is set and the client chooses not to provide authentication information about itself, the negotiations will continue. |
requestOptions | shared requestOptions |
required | shared required Require client to present authentication, if not presented then negotiations will be declined. |
trace | shared trace |
v00 | shared v00 |
v07 | shared v07 |
v08 | shared v08 |
v13 | shared v13 |
webSocketFrame | shared webSocketFrame |
websocketVersion | shared websocketVersion |