Uses of Class
io.vertx.mutiny.ext.stomp.StompServer
-
Packages that use StompServer Package Description io.vertx.mutiny.ext.stomp -
-
Uses of StompServer in io.vertx.mutiny.ext.stomp
Fields in io.vertx.mutiny.ext.stomp with type parameters of type StompServer Modifier and Type Field Description static TypeArg<StompServer>
StompServer. __TYPE_ARG
Methods in io.vertx.mutiny.ext.stomp that return StompServer Modifier and Type Method Description static StompServer
StompServer. create(Vertx vertx)
static StompServer
StompServer. create(Vertx vertx, io.vertx.ext.stomp.StompServerOptions options)
static StompServer
StompServer. create(Vertx vertx, NetServer netServer)
static StompServer
StompServer. create(Vertx vertx, NetServer net, io.vertx.ext.stomp.StompServerOptions options)
StompServer
StompServer. handler(StompServerHandler handler)
StompServer
StompServer. listenAndAwait()
Blocking variant oflisten()
.StompServer
StompServer. listenAndAwait(int port)
Blocking variant oflisten(int)
.StompServer
StompServer. listenAndAwait(int port, String host)
Blocking variant oflisten(int,String)
.StompServer
StompServer. listenAndForget()
Variant oflisten()
that ignores the result of the operation.StompServer
StompServer. listenAndForget(int port)
Variant oflisten(int)
that ignores the result of the operation.StompServer
StompServer. listenAndForget(int port, String host)
Variant oflisten(int,String)
that ignores the result of the operation.static StompServer
StompServer. newInstance(io.vertx.ext.stomp.StompServer arg)
StompServer
StompServerConnection. server()
StompServer
StompServer. writingFrameHandler(Consumer<ServerFrame> handler)
Methods in io.vertx.mutiny.ext.stomp that return types with arguments of type StompServer Modifier and Type Method Description io.smallrye.mutiny.Uni<StompServer>
StompServer. listen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
).io.smallrye.mutiny.Uni<StompServer>
StompServer. listen(int port)
Connects the STOMP server to the given port.io.smallrye.mutiny.Uni<StompServer>
StompServer. listen(int port, String host)
Connects the STOMP server to the given port / interface.
-