Uses of Class
io.vertx.rxjava3.core.net.NetServer
Packages that use NetServer
-
Uses of NetServer in io.vertx.rxjava3.core
Methods in io.vertx.rxjava3.core that return NetServerModifier and TypeMethodDescriptionVertx.createNetServer()Create a TCP/SSL server using default optionsVertx.createNetServer(NetServerOptions options) Create a TCP/SSL server using the specified optionsVertx.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.rxjava3.core.net
Fields in io.vertx.rxjava3.core.net with type parameters of type NetServerModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<NetServer> NetServer.__TYPE_ARGMethods in io.vertx.rxjava3.core.net that return NetServerModifier and TypeMethodDescriptionNetServer.connectHandler(Handler<NetSocket> handler) Supply a connect handler for this server.static NetServerNetServer.newInstance(NetServer arg) Methods in io.vertx.rxjava3.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.NetServer.rxListen()Start listening on the port and host as configured in theNetServerOptionsused when creating the server.NetServer.rxListen(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.rxListen(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.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.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.