How to delete a message or get message timestamp using paho JS client from activemq
broker?
I could not found anyway of deleting message from JS paho client.
How to delete a message or get message timestamp using paho JS client from activemq
broker?
I could not found anyway of deleting message from JS paho client.
There is no concept of deleting a message in MQTT, once sent it's sent.
The closest would be to clear a retained message and you do this by publishing a message with a null/empty payload.
There is also no timestamp in a MQTT message unless you add one to the payload yourself.