A wrapper around the MQTT-DAT to make live easier.
Tested with https://mosquitto.org/
Inputs:
- TableDAT - Topics : A list of topics you are subscribing too.
Outputs:
- TableDAT - Output: A fifo list of received messages.
Parameters:
- Clean Session : Determines if the client should receive previous events on subscribing to an event. Make sure your ClientID is static, otherwise you might leak your server to death, as it will hold messages for ever.
- ClientID : A way for the MQTT-Broker to identifie your client. Important for persistant topics.
- Retain : Should messages be dispatched so that they are sent to new clients subscribing to a topic? (Like a pinned message)
- QOS : How definite does the message need to be delivered. The more definite the slower/ressource intensive it gets.
Methods:
Publish( topic:str, payload:stringlike, qosQOS.Enum = None, retain:bool = None, encode:str = "")