Uses of Class
io.vertx.mutiny.core.net.QuicConnection
Packages that use QuicConnection
-
Uses of QuicConnection in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type QuicConnectionMethods in io.vertx.mutiny.core.net that return QuicConnectionModifier and TypeMethodDescriptionQuicConnection.closeAndForget()Close the connection, all associated streams will be closed before.QuicConnection.closeAndForget(io.vertx.core.net.QuicConnectionClose payload) Close the connection, all associated streams will be closed before.QuicConnection.closeHandler(Runnable handler) Set a handler called when the connection is closed.QuicClient.connectAndAwait(int port, String host) Connect to a Quic server at the specificportandhost.QuicClient.connectAndAwait(int port, String host, io.vertx.core.net.QuicConnectOptions options) Connect to a Quic server at the specificportandhost, with specificoptions.QuicClient.connectAndAwait(io.vertx.core.net.SocketAddress address) Connect to a Quic server.QuicClient.connectAndAwait(io.vertx.core.net.SocketAddress address, io.vertx.core.net.QuicConnectOptions options) Connect to a Quic server with specificoptions.QuicStream.connection()QuicConnection.datagramHandler(Consumer<io.vertx.core.buffer.Buffer> handler) Set a handler called with the datagram addressed to this connection.static QuicConnectionQuicConnection.newInstance(io.vertx.core.net.QuicConnection delegate) Creates a new instance of theQuicConnection.QuicConnection.openStreamAndForget()Open a bidirectional stream to the remote endpoint.QuicConnection.openStreamAndForget(boolean bidirectional) Open a stream to the remote endpoint withbidirectional parameterspecifying its directionality.QuicConnection.shutdownAndForget()Shutdown with a 30 seconds timeout.QuicConnection.shutdownAndForget(Duration timeout) Initiate a graceful connection shutdown, the connection is taken out of service and closed when all the inflight streams are processed, otherwise after atimeoutthe connection will be closed.QuicConnection.shutdownAndForget(Duration timeout, io.vertx.core.net.QuicConnectionClose payload) Initiate a graceful connection shutdown, the connection is taken out of service and closed when all the inflight streams are processed, otherwise after atimeoutthe connection will be closed.QuicConnection.shutdownHandler(Consumer<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(Consumer<QuicStream> handler) Set a handler processing incoming Quic streams.QuicConnection.writeDatagramAndForget(io.vertx.core.buffer.Buffer buffer) Send a datagram.Methods in io.vertx.mutiny.core.net that return types with arguments of type QuicConnectionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<QuicConnection>Connect to a Quic server at the specificportandhost.io.smallrye.mutiny.Uni<QuicConnection>Connect to a Quic server at the specificportandhost, with specificoptions.io.smallrye.mutiny.Uni<QuicConnection>QuicClient.connect(io.vertx.core.net.SocketAddress address) Connect to a Quic server.io.smallrye.mutiny.Uni<QuicConnection>QuicClient.connect(io.vertx.core.net.SocketAddress address, io.vertx.core.net.QuicConnectOptions options) Connect to a Quic server with specificoptions.Method parameters in io.vertx.mutiny.core.net with type arguments of type QuicConnectionModifier and TypeMethodDescriptionQuicServer.connectHandler(Consumer<QuicConnection> handler) Set the handler processingQuicConnection, the handler must be set before the server is bound.