Uses of Class
io.vertx.mutiny.core.http.HttpConnection
Packages that use HttpConnection
-
Uses of HttpConnection in io.vertx.mutiny.core.http
Subclasses of HttpConnection in io.vertx.mutiny.core.httpModifier and TypeClassDescriptionclassRepresents an HTTP client connection.Fields in io.vertx.mutiny.core.http with type parameters of type HttpConnectionMethods in io.vertx.mutiny.core.http that return HttpConnectionModifier and TypeMethodDescriptionHttpConnection.closeAndForget()Close immediately (shutdown(0, TimeUnit.SECONDS).HttpConnection.closeHandler(Runnable handler) Set a close handler.HttpClientRequest.connection()HttpServerRequest.connection()HttpConnection.exceptionHandler(Consumer<Throwable> handler) Set an handler called when a connection error happensHttpConnection.goAway(long errorCode) Deprecated.HttpConnection.goAway(long errorCode, int lastStreamId) Deprecated.instead useshutdown()HttpConnection.goAway(long errorCode, int lastStreamId, io.vertx.core.buffer.Buffer debugData) Deprecated.instead useshutdown()HttpConnection.goAwayHandler(Consumer<io.vertx.core.http.GoAway> handler) Set an handler called when a GOAWAY frame is received.static HttpConnectionHttpConnection.newInstance(io.vertx.core.http.HttpConnection delegate) Creates a new instance of theHttpConnection.HttpConnection.pingAndForget(io.vertx.core.buffer.Buffer data) Send a PING frame to the remote endpoint.HttpConnection.pingHandler(Consumer<io.vertx.core.buffer.Buffer> handler) Set an handler notified when a PING frame is received from the remote endpoint.HttpConnection.remoteSettingsHandler(Consumer<io.vertx.core.http.HttpSettings> handler) Set an handler that is called when remote endpointHttpSettingsare updated.HttpConnection.setWindowSize(int windowSize) Update the current connection wide window size to a new size.HttpConnection.shutdownAndForget()Shutdown with a 30 seconds timeout (shutdown(30, TimeUnit.SECONDS)).HttpConnection.shutdownAndForget(long timeout, TimeUnit unit) Callsshutdown(Duration)HttpConnection.shutdownAndForget(Duration timeout) Initiate a graceful connection shutdown, the connection is taken out of service and closed when all the inflight requests are processed, otherwise after atimeoutthe connection will be closed.HttpConnection.shutdownHandler(Runnable handler) Set ahandlernotified when the HTTP connection is shutdown: the client or server will close the connection within a certain amount of time.HttpConnection.updateSettingsAndForget(io.vertx.core.http.HttpSettings settings) Send to the remote endpoint an update of this endpoint settingsMethod parameters in io.vertx.mutiny.core.http with type arguments of type HttpConnectionModifier and TypeMethodDescriptionHttpServer.connectionHandler(Consumer<HttpConnection> handler) Set a connection handler for the server.HttpClientBuilder.withConnectHandler(Consumer<HttpConnection> handler) Set a connection handler for the client.HttpServerBuilder.withConnectHandler(Consumer<HttpConnection> handler) Set a connection handler for the server.
shutdown()