Uses of Interface
io.vertx.core.net.NetServer
Packages that use NetServer
Package
Description
-
Uses of NetServer in io.vertx.core
Methods in io.vertx.core that return NetServerModifier and TypeMethodDescriptiondefault NetServerVertx.createNetServer()Create a TCP/SSL server using default optionsVertx.createNetServer(NetServerOptions options) Create a TCP/SSL server using the specified optionsdefault NetServerVertx.createNetServer(TcpServerConfig config) Create a TCP/SSL server using the specified configVertx.createNetServer(TcpServerConfig config, ServerSSLOptions sslOptions) Create a TCP/SSL server using the specified config and the specified ssl options -
Uses of NetServer in io.vertx.core.net
Methods in io.vertx.core.net that return NetServerModifier and TypeMethodDescriptionNetServer.connectHandler(Handler<NetSocket> handler) Supply a connect handler for this server.NetServer.exceptionHandler(Handler<Throwable> handler) Set an exception handler called for socket errors happening before the connection is passed to theNetServer.connectHandler(Handler), e.g during the TLS handshake.Methods in io.vertx.core.net that return types with arguments of type NetServerModifier and TypeMethodDescriptionNetServer.listen()Start listening on the port and host as configured in theNetServerOptionsused when creating the server.NetServer.listen(int port) Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theNetServerOptionsused when creating the server.Start listening on the specified port and host, ignoring port and host configured in theNetServerOptionsused when creating the server.NetServer.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server. -
Uses of NetServer in io.vertx.ext.stomp
Methods in io.vertx.ext.stomp with parameters of type NetServerModifier and TypeMethodDescriptionstatic StompServerCreates aStompServerbased on the default Stomp Server implementation.static StompServerStompServer.create(Vertx vertx, NetServer net, StompServerOptions options) Creates aStompServerbased on the default Stomp Server implementation. -
Uses of NetServer in io.vertx.reactivex.core.net
Methods in io.vertx.reactivex.core.net that return NetServerMethods in io.vertx.reactivex.core.net with parameters of type NetServerConstructors in io.vertx.reactivex.core.net with parameters of type NetServer -
Uses of NetServer in io.vertx.rxjava3.core.net
Methods in io.vertx.rxjava3.core.net that return NetServerMethods in io.vertx.rxjava3.core.net with parameters of type NetServerConstructors in io.vertx.rxjava3.core.net with parameters of type NetServer