Uses of Class
io.vertx.mutiny.mqtt.MqttServer
-
Packages that use MqttServer Package Description io.vertx.mutiny.mqtt -
-
Uses of MqttServer in io.vertx.mutiny.mqtt
Fields in io.vertx.mutiny.mqtt with type parameters of type MqttServer Modifier and Type Field Description static TypeArg<MqttServer>
MqttServer. __TYPE_ARG
Methods in io.vertx.mutiny.mqtt that return MqttServer Modifier and Type Method Description static MqttServer
MqttServer. create(Vertx vertx)
static MqttServer
MqttServer. create(Vertx vertx, io.vertx.mqtt.MqttServerOptions options)
MqttServer
MqttServer. endpointHandler(Consumer<MqttEndpoint> handler)
MqttServer
MqttServer. exceptionHandler(Consumer<Throwable> handler)
MqttServer
MqttServer. listenAndAwait()
Blocking variant oflisten(int, java.lang.String)
.MqttServer
MqttServer. listenAndAwait(int port)
Blocking variant oflisten(int)
.MqttServer
MqttServer. listenAndAwait(int port, String host)
Blocking variant oflisten(int,String)
.MqttServer
MqttServer. listenAndForget()
Variant oflisten(int, java.lang.String)
that ignores the result of the operation.MqttServer
MqttServer. listenAndForget(int port)
Variant oflisten(int)
that ignores the result of the operation.MqttServer
MqttServer. listenAndForget(int port, String host)
Variant oflisten(int,String)
that ignores the result of the operation.static MqttServer
MqttServer. newInstance(io.vertx.mqtt.MqttServer arg)
Methods in io.vertx.mutiny.mqtt that return types with arguments of type MqttServer Modifier and Type Method Description io.smallrye.mutiny.Uni<MqttServer>
MqttServer. listen()
Start the server listening for incoming connections using the specified options through the constructorio.smallrye.mutiny.Uni<MqttServer>
MqttServer. listen(int port)
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.io.smallrye.mutiny.Uni<MqttServer>
MqttServer. listen(int port, String host)
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
-