HttpConnection |
HttpConnection.closeHandler(io.vertx.core.Handler<Void> handler) |
Set a close handler.
|
HttpConnection |
HttpClientRequest.connection() |
|
HttpConnection |
HttpServerRequest.connection() |
|
HttpConnection |
HttpConnection.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
Set an handler called when a connection error happens
|
HttpConnection |
HttpConnection.goAway(long errorCode) |
Like goAway(long) with a last stream id -1 which means to disallow any new stream creation.
|
HttpConnection |
HttpConnection.goAway(long errorCode,
int lastStreamId) |
|
HttpConnection |
HttpConnection.goAway(long errorCode,
int lastStreamId,
Buffer debugData) |
Send a go away frame to the remote endpoint of the connection.
|
HttpConnection |
HttpConnection.goAwayHandler(io.vertx.core.Handler<io.vertx.core.http.GoAway> handler) |
Set an handler called when a frame is received.
|
static HttpConnection |
HttpConnection.newInstance(io.vertx.core.http.HttpConnection arg) |
|
HttpConnection |
HttpConnection.ping(Buffer data) |
Send a frame to the remote endpoint.
|
HttpConnection |
HttpConnection.ping(Buffer data,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Buffer>> pongHandler) |
Send a frame to the remote endpoint.
|
HttpConnection |
HttpConnection.pingHandler(io.vertx.core.Handler<Buffer> handler) |
Set an handler notified when a frame is received from the remote endpoint.
|
HttpConnection |
HttpConnection.remoteSettingsHandler(io.vertx.core.Handler<io.vertx.core.http.Http2Settings> handler) |
Set an handler that is called when remote endpoint Http2Settings are updated.
|
HttpConnection |
HttpConnection.setWindowSize(int windowSize) |
Update the current connection wide window size to a new size.
|
HttpConnection |
HttpConnection.shutdownHandler(io.vertx.core.Handler<Void> handler) |
Set an handler called when a frame has been sent or received and all connections are closed.
|
HttpConnection |
HttpConnection.updateSettings(io.vertx.core.http.Http2Settings settings) |
Send to the remote endpoint an update of this endpoint settings
|
HttpConnection |
HttpConnection.updateSettings(io.vertx.core.http.Http2Settings settings,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> completionHandler) |
Send to the remote endpoint an update of this endpoint settings
|