HttpConnection |
HttpConnection.closeHandler(Handler<Void> handler) |
Set a close handler.
|
HttpConnection |
HttpClientRequest.connection() |
|
HttpConnection |
HttpServerRequest.connection() |
|
HttpConnection |
HttpConnection.exceptionHandler(Handler<Throwable> handler) |
Set an handler called when a connection error happens
|
default HttpConnection |
HttpConnection.goAway(long errorCode) |
Like goAway(long, int) with a last stream id -1 which means to disallow any new stream creation.
|
default 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(Handler<GoAway> handler) |
Set an handler called when a GOAWAY frame is received.
|
HttpConnection |
HttpConnection.pingHandler(Handler<Buffer> handler) |
Set an handler notified when a PING frame is received from the remote endpoint.
|
HttpConnection |
HttpConnection.remoteSettingsHandler(Handler<Http2Settings> handler) |
Set an handler that is called when remote endpoint Http2Settings are updated.
|
default HttpConnection |
HttpConnection.setWindowSize(int windowSize) |
Update the current connection wide window size to a new size.
|
HttpConnection |
HttpConnection.shutdownHandler(Handler<Void> handler) |
Set a handler notified when the HTTP connection is shutdown: the client or server will close the connection
within a certain amount of time.
|