Uses of Interface
io.vertx.core.http.HttpConnection
Packages that use HttpConnection
Package
Description
-
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 useHttpConnection.shutdown()Deprecated.instead useHttpConnection.shutdown()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. -
Uses of HttpConnection in io.vertx.grpc.client
Methods in io.vertx.grpc.client that return HttpConnection -
Uses of HttpConnection in io.vertx.grpc.server
Methods in io.vertx.grpc.server that return HttpConnection -
Uses of HttpConnection in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return HttpConnectionMethods in io.vertx.reactivex.core.http with parameters of type HttpConnectionModifier and TypeMethodDescriptionstatic HttpConnectionHttpConnection.newInstance(HttpConnection arg) Constructors in io.vertx.reactivex.core.http with parameters of type HttpConnection -
Uses of HttpConnection in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http that return HttpConnectionMethods in io.vertx.rxjava3.core.http with parameters of type HttpConnectionModifier and TypeMethodDescriptionstatic HttpConnectionHttpConnection.newInstance(HttpConnection arg) Constructors in io.vertx.rxjava3.core.http with parameters of type HttpConnection
HttpConnection.shutdown()