Uses of Interface
io.vertx.mqtt.MqttServer
-
Packages that use MqttServer Package Description io.vertx.mqtt io.vertx.reactivex.mqtt io.vertx.rxjava3.mqtt -
-
Uses of MqttServer in io.vertx.mqtt
Methods in io.vertx.mqtt that return MqttServer Modifier and Type Method Description static MqttServer
MqttServer. create(Vertx vertx)
Return an MQTT server instance using default optionsstatic MqttServer
MqttServer. create(Vertx vertx, MqttServerOptions options)
Return an MQTT server instanceMqttServer
MqttServer. endpointHandler(Handler<MqttEndpoint> handler)
Set the endpoint handler for the server.MqttServer
MqttServer. exceptionHandler(Handler<Throwable> handler)
Set an exception handler for the server, that will be called when an error happens independantly of an acceptedMqttEndpoint
, like a rejected connectionMethods in io.vertx.mqtt that return types with arguments of type MqttServer Modifier and Type Method Description Future<MqttServer>
MqttServer. listen()
Start the server listening for incoming connections using the specified options through the constructorFuture<MqttServer>
MqttServer. listen(int port)
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.Future<MqttServer>
MqttServer. listen(int port, String host)
Start the server listening for incoming connections on the port and host specified -
Uses of MqttServer in io.vertx.reactivex.mqtt
Methods in io.vertx.reactivex.mqtt that return MqttServer Modifier and Type Method Description MqttServer
MqttServer. getDelegate()
Methods in io.vertx.reactivex.mqtt with parameters of type MqttServer Modifier and Type Method Description static MqttServer
MqttServer. newInstance(MqttServer arg)
Constructors in io.vertx.reactivex.mqtt with parameters of type MqttServer Constructor Description MqttServer(MqttServer delegate)
-
Uses of MqttServer in io.vertx.rxjava3.mqtt
Methods in io.vertx.rxjava3.mqtt that return MqttServer Modifier and Type Method Description MqttServer
MqttServer. getDelegate()
Methods in io.vertx.rxjava3.mqtt with parameters of type MqttServer Modifier and Type Method Description static MqttServer
MqttServer. newInstance(MqttServer arg)
Constructors in io.vertx.rxjava3.mqtt with parameters of type MqttServer Constructor Description MqttServer(MqttServer delegate)
-