Uses of Interface
io.vertx.core.http.HttpConnection
-
Packages that use HttpConnection Package Description io.vertx.core.http io.vertx.grpc.client io.vertx.grpc.server io.vertx.reactivex.core.http io.vertx.rxjava3.core.http -
-
Uses of HttpConnection in io.vertx.core.http
Subinterfaces of HttpConnection in io.vertx.core.http Modifier and Type Interface Description interface
HttpClientConnection
Represents an HTTP client connection.Methods in io.vertx.core.http that return HttpConnection Modifier and Type Method Description 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 happensdefault HttpConnection
HttpConnection. goAway(long errorCode)
LikegoAway(long, int)
with a last stream id-1
which means to disallow any new stream creation.default HttpConnection
HttpConnection. goAway(long errorCode, int lastStreamId)
LikegoAway(long, int, Buffer)
with no buffer.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 endpointHttp2Settings
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 ahandler
notified 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 HttpConnection Modifier and Type Method Description HttpServer
HttpServer. connectionHandler(Handler<HttpConnection> handler)
Set a connection handler for the server.HttpClientBuilder
HttpClientBuilder. withConnectHandler(Handler<HttpConnection> handler)
Set a connection handler for the client. -
Uses of HttpConnection in io.vertx.grpc.client
Methods in io.vertx.grpc.client that return HttpConnection Modifier and Type Method Description HttpConnection
GrpcClientRequest. connection()
-
Uses of HttpConnection in io.vertx.grpc.server
Methods in io.vertx.grpc.server that return HttpConnection Modifier and Type Method Description HttpConnection
GrpcServerRequest. connection()
-
Uses of HttpConnection in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return HttpConnection Modifier and Type Method Description HttpConnection
HttpConnection. getDelegate()
Methods in io.vertx.reactivex.core.http with parameters of type HttpConnection Modifier and Type Method Description static HttpConnection
HttpConnection. newInstance(HttpConnection arg)
Constructors in io.vertx.reactivex.core.http with parameters of type HttpConnection Constructor Description HttpConnection(HttpConnection delegate)
-
Uses of HttpConnection in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http that return HttpConnection Modifier and Type Method Description HttpConnection
HttpConnection. getDelegate()
Methods in io.vertx.rxjava3.core.http with parameters of type HttpConnection Modifier and Type Method Description static HttpConnection
HttpConnection. newInstance(HttpConnection arg)
Constructors in io.vertx.rxjava3.core.http with parameters of type HttpConnection Constructor Description HttpConnection(HttpConnection delegate)
-