Uses of Interface
io.vertx.core.http.HttpConnection
Packages that use HttpConnection
-
Uses of HttpConnection in io.vertx.core.http
Subinterfaces of HttpConnection in io.vertx.core.httpModifier and TypeInterfaceDescriptioninterfaceRepresents an HTTP client connection.Methods in io.vertx.core.http that return HttpConnectionModifier and TypeMethodDescriptionHttpConnection.closeHandler(Handler<Void> handler) Set a close handler.HttpClientRequest.connection()HttpServerRequest.connection()HttpConnection.exceptionHandler(Handler<Throwable> handler) Set an handler called when a connection error happensdefault HttpConnectionHttpConnection.goAway(long errorCode) Deprecated.default HttpConnectionHttpConnection.goAway(long errorCode, int lastStreamId) Deprecated.instead useshutdown()Deprecated.instead useshutdown()HttpConnection.goAwayHandler(Handler<GoAway> handler) Set an handler called when a GOAWAY frame is received.HttpConnection.pingHandler(Handler<Buffer> handler) Set an handler notified when a PING frame is received from the remote endpoint.HttpConnection.remoteSettingsHandler(Handler<HttpSettings> handler) Set an handler that is called when remote endpointHttpSettingsare updated.default HttpConnectionHttpConnection.setWindowSize(int windowSize) Update the current connection wide window size to a new size.HttpConnection.shutdownHandler(Handler<Void> handler) Set ahandlernotified when the HTTP connection is shutdown: the client or server will close the connection within a certain amount of time.Method parameters in io.vertx.core.http with type arguments of type HttpConnectionModifier and TypeMethodDescriptionHttpServer.connectionHandler(Handler<HttpConnection> handler) Set a connection handler for the server.HttpClientBuilder.withConnectHandler(Handler<HttpConnection> handler) Set a connection handler for the client.HttpServerBuilder.withConnectHandler(Handler<HttpConnection> handler) Set a connection handler for the server.
shutdown()