Uses of Class
io.vertx.rxjava3.ext.stomp.StompServer
-
Packages that use StompServer Package Description io.vertx.rxjava3.ext.stomp -
-
Uses of StompServer in io.vertx.rxjava3.ext.stomp
Fields in io.vertx.rxjava3.ext.stomp with type parameters of type StompServer Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<StompServer>
StompServer. __TYPE_ARG
Methods in io.vertx.rxjava3.ext.stomp that return StompServer Modifier and Type Method Description static StompServer
StompServer. create(Vertx vertx)
Creates aStompServer
based on the default Stomp Server implementation, and use the default options.static StompServer
StompServer. create(Vertx vertx, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
StompServer. create(Vertx vertx, NetServer netServer)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
StompServer. create(Vertx vertx, NetServer net, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.StompServer
StompServer. handler(StompServerHandler handler)
Configures theStompServerHandler
.static StompServer
StompServer. newInstance(StompServer arg)
StompServer
StompServerConnection. server()
StompServer
StompServer. writingFrameHandler(Handler<ServerFrame> handler)
Configures the handler that is invoked every time a frame is going to be written to the "wire".Methods in io.vertx.rxjava3.ext.stomp that return types with arguments of type StompServer Modifier and Type Method Description Single<StompServer>
StompServer. listen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
).Single<StompServer>
StompServer. listen(int port)
Connects the STOMP server to the given port.Single<StompServer>
StompServer. listen(int port, String host)
Connects the STOMP server to the given port / interface.Single<StompServer>
StompServer. rxListen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
).Single<StompServer>
StompServer. rxListen(int port)
Connects the STOMP server to the given port.Single<StompServer>
StompServer. rxListen(int port, String host)
Connects the STOMP server to the given port / interface.
-