Uses of Class
io.vertx.reactivex.core.net.QuicConnection
Packages that use QuicConnection
-
Uses of QuicConnection in io.vertx.reactivex.core.net
Fields in io.vertx.reactivex.core.net with type parameters of type QuicConnectionModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<QuicConnection> QuicConnection.__TYPE_ARGMethods in io.vertx.reactivex.core.net that return QuicConnectionModifier and TypeMethodDescriptionQuicConnection.closeHandler(Handler<Void> handler) Set a handler called when the connection is closed.QuicStream.connection()QuicConnection.datagramHandler(Handler<Buffer> handler) Set a handler called with the datagram addressed to this connection.static QuicConnectionQuicConnection.newInstance(QuicConnection arg) QuicConnection.shutdownHandler(Handler<Duration> handler) Set ahandlernotified when the connection is shutdown: the client or server will close the connection within a certain amount of time.QuicConnection.streamHandler(Handler<QuicStream> handler) Set a handler processing incoming Quic streams.Methods in io.vertx.reactivex.core.net that return types with arguments of type QuicConnectionModifier and TypeMethodDescriptionConnect to a Quic server at the specificportandhost.QuicClient.connect(int port, String host, QuicConnectOptions options) Connect to a Quic server at the specificportandhost, with specificoptions.QuicClient.connect(SocketAddress address) Connect to a Quic server.QuicClient.connect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.Connect to a Quic server at the specificportandhost.QuicClient.rxConnect(int port, String host, QuicConnectOptions options) Connect to a Quic server at the specificportandhost, with specificoptions.QuicClient.rxConnect(SocketAddress address) Connect to a Quic server.QuicClient.rxConnect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.Method parameters in io.vertx.reactivex.core.net with type arguments of type QuicConnectionModifier and TypeMethodDescriptionQuicServer.connectHandler(Handler<QuicConnection> handler) Set the handler processingQuicConnection, the handler must be set before the server is bound.