Uses of Interface
io.vertx.core.net.QuicServer
Packages that use QuicServer
Package
Description
-
Uses of QuicServer in io.vertx.core
Methods in io.vertx.core that return QuicServerModifier and TypeMethodDescriptiondefault QuicServerVertx.createQuicServer(QuicServerConfig config, ServerSSLOptions sslOptions) Create a configured Quic server.default QuicServerVertx.createQuicServer(ServerSSLOptions sslOptions) LikeVertx.createQuicServer(QuicServerConfig, ServerSSLOptions), with the default server configuration. -
Uses of QuicServer in io.vertx.core.net
Methods in io.vertx.core.net that return QuicServerModifier and TypeMethodDescriptionQuicServer.connectHandler(Handler<QuicConnection> handler) Set the handler processingQuicConnection, the handler must be set before the server is bound.QuicServer.exceptionHandler(Handler<Throwable> handler) Set an exception handler called for socket errors happening before the QUIC connection is established, e.g. during the TLS handshake.default QuicServerQuicServer.streamHandler(Handler<QuicStream> handler) Set a handler processing incoming Quic streams, this is a short-cut ofserver.connectHandler(connection -> connection.streamHandler(stream)). -
Uses of QuicServer in io.vertx.reactivex.core.net
Methods in io.vertx.reactivex.core.net that return QuicServerMethods in io.vertx.reactivex.core.net with parameters of type QuicServerConstructors in io.vertx.reactivex.core.net with parameters of type QuicServer -
Uses of QuicServer in io.vertx.rxjava3.core.net
Methods in io.vertx.rxjava3.core.net that return QuicServerMethods in io.vertx.rxjava3.core.net with parameters of type QuicServerConstructors in io.vertx.rxjava3.core.net with parameters of type QuicServer