Uses of Class
io.vertx.reactivex.mqtt.MqttServer
-
Packages that use MqttServer Package Description io.vertx.reactivex.mqtt -
-
Uses of MqttServer in io.vertx.reactivex.mqtt
Fields in io.vertx.reactivex.mqtt with type parameters of type MqttServer Modifier and Type Field Description static TypeArg<MqttServer>MqttServer. __TYPE_ARGMethods in io.vertx.reactivex.mqtt that return MqttServer Modifier and Type Method Description static MqttServerMqttServer. create(Vertx vertx)Return an MQTT server instance using default optionsstatic MqttServerMqttServer. create(Vertx vertx, MqttServerOptions options)Return an MQTT server instanceMqttServerMqttServer. endpointHandler(Handler<MqttEndpoint> handler)Set the endpoint handler for the server.MqttServerMqttServer. 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 connectionMqttServerMqttServer. listen()Start the server listening for incoming connections using the specified options through the constructorMqttServerMqttServer. listen(int port)Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.MqttServerMqttServer. listen(int port, Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.MqttServerMqttServer. 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 constructorMqttServerMqttServer. listen(int port, String host, Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructorMqttServerMqttServer. listen(Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections using the specified options through the constructorstatic MqttServerMqttServer. newInstance(MqttServer arg)Methods in io.vertx.reactivex.mqtt that return types with arguments of type MqttServer Modifier and Type Method Description io.reactivex.Single<MqttServer>MqttServer. rxListen()Start the server listening for incoming connections using the specified options through the constructorio.reactivex.Single<MqttServer>MqttServer. rxListen(int port)Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.io.reactivex.Single<MqttServer>MqttServer. rxListen(int port, String host)Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructorMethod parameters in io.vertx.reactivex.mqtt with type arguments of type MqttServer Modifier and Type Method Description MqttServerMqttServer. listen(int port, Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.MqttServerMqttServer. listen(int port, String host, Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructorMqttServerMqttServer. listen(Handler<AsyncResult<MqttServer>> listenHandler)Start the server listening for incoming connections using the specified options through the constructor
-