Uses of Class
io.vertx.rxjava.mqtt.MqttServer
-
Packages that use MqttServer Package Description io.vertx.rxjava.mqtt -
-
Uses of MqttServer in io.vertx.rxjava.mqtt
Fields in io.vertx.rxjava.mqtt with type parameters of type MqttServer Modifier and Type Field Description static TypeArg<MqttServer>
MqttServer. __TYPE_ARG
Methods in io.vertx.rxjava.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 connectionMqttServer
MqttServer. listen()
Start the server listening for incoming connections using the specified options through the constructorMqttServer
MqttServer. listen(int port)
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.MqttServer
MqttServer. 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.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 constructorMqttServer
MqttServer. 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 constructorMqttServer
MqttServer. listen(Handler<AsyncResult<MqttServer>> listenHandler)
Start the server listening for incoming connections using the specified options through the constructorstatic MqttServer
MqttServer. newInstance(MqttServer arg)
Methods in io.vertx.rxjava.mqtt that return types with arguments of type MqttServer Modifier and Type Method Description rx.Single<MqttServer>
MqttServer. rxListen()
Start the server listening for incoming connections using the specified options through the constructorrx.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.rx.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.rxjava.mqtt with type arguments of type MqttServer Modifier and Type Method Description MqttServer
MqttServer. 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.MqttServer
MqttServer. 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 constructorMqttServer
MqttServer. listen(Handler<AsyncResult<MqttServer>> listenHandler)
Start the server listening for incoming connections using the specified options through the constructor
-