Uses of Class
io.vertx.reactivex.core.net.QuicServer
Packages that use QuicServer
-
Uses of QuicServer in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return QuicServerModifier and TypeMethodDescriptionVertx.createQuicServer(QuicServerConfig config, ServerSSLOptions sslOptions) Create a configured Quic server.Vertx.createQuicServer(ServerSSLOptions sslOptions) LikeVertx.createQuicServer(QuicServerConfig, ServerSSLOptions), with the default server configuration. -
Uses of QuicServer in io.vertx.reactivex.core.net
Fields in io.vertx.reactivex.core.net with type parameters of type QuicServerModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<QuicServer> QuicServer.__TYPE_ARGMethods in io.vertx.reactivex.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.static QuicServerQuicServer.newInstance(QuicServer arg) QuicServer.streamHandler(Handler<QuicStream> handler) Set a handler processing incoming Quic streams, this is a short-cut ofserver.connectHandler(connection -> connection.streamHandler(stream)).