The actual port the server is listening on. This is useful if you bound the server specifying 0 as port number signifying an ephemeral port
Close the server supplying an handler that will be called when the server is actually closed (or has failed).
Close the server supplying an handler that will be called when the server is actually closed (or has failed).
Set the endpoint handler for the server. If an MQTT client connect to the server a new MqttEndpoint instance will be created and passed to the handler
Set an exception handler for the server, that will be called when an error happens independantly of an accepted MqttEndpoint, like a rejected connection
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host. It ignores any options specified through the constructor
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host. It ignores any options specified through the constructor
Start the server listening for incoming connections using the specified options through the constructor
Start the server listening for incoming connections using the specified options through the constructor
Return an MQTT server instance
Return an MQTT server instance using default options
Generated using TypeDoc
An MQTT server
You can accept incoming MQTT connection requests providing a {@link MqttServer#endpointHandler}. As the requests arrive, the handler will be called with an instance of MqttEndpoint in order to manage the communication with the remote MQTT client.