Uses of Class
io.vertx.mutiny.core.net.QuicServer
Packages that use QuicServer
-
Uses of QuicServer in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return QuicServerModifier and TypeMethodDescriptionVertx.createQuicServer(io.vertx.core.net.QuicServerConfig config, io.vertx.core.net.ServerSSLOptions sslOptions) Create a configured Quic server.Vertx.createQuicServer(io.vertx.core.net.ServerSSLOptions sslOptions) LikeVertx.createQuicServer(QuicServerConfig, ServerSSLOptions), with the default server configuration. -
Uses of QuicServer in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type QuicServerMethods in io.vertx.mutiny.core.net that return QuicServerModifier and TypeMethodDescriptionQuicServer.bindAndForget(io.vertx.core.net.SocketAddress arg0) Binds a UDP socket at the givenaddress.QuicServer.closeAndForget()Close the endpoint and release all associated resources.QuicServer.connectHandler(Consumer<QuicConnection> handler) Set the handler processingQuicConnection, the handler must be set before the server is bound.QuicServer.exceptionHandler(Consumer<Throwable> handler) Set an exception handler called for socket errors happening before the QUIC connection is established, e.g. during the TLS handshake.QuicServer.listenAndForget()Start listening on theportandhostas configured in theio.vertx.mutiny.core.net.QuicServerConfigused when creating the server.QuicServer.listenAndForget(int port) Start listening on the specified port and host "0.0.0.0".QuicServer.listenAndForget(int port, String host) Start listening on the specifiedportandhost.QuicServer.listenAndForget(io.vertx.core.net.SocketAddress localAddress) Start listening on the specified local address.static QuicServerQuicServer.newInstance(io.vertx.core.net.QuicServer delegate) Creates a new instance of theQuicServer.QuicServer.shutdownAndForget()Shutdown the endpoint with a 30 seconds grace period (shutdown(30, TimeUnit.SECONDS)).QuicServer.shutdownAndForget(Duration arg0) Initiate the endpoint shutdown sequence.QuicServer.streamHandler(Consumer<QuicStream> handler) Set a handler processing incoming Quic streams, this is a short-cut ofserver.connectHandler(connection -> connection.streamHandler(stream)).QuicServer.updateSSLOptionsAndForget(io.vertx.core.net.ServerSSLOptions options) Update the server with new SSLoptions, the update happens if the options object is valid and different from the existing options object.QuicServer.updateSSLOptionsAndForget(io.vertx.core.net.ServerSSLOptions options, boolean force) Update the server with new SSLoptions, the update happens if the options object is valid and different from the existing options object.