wialon / gmqtt

Python MQTT v5.0 async client
MIT License
396 stars 52 forks source link

is there a handler like python.paho.mqtt message_callback_add? #140

Closed panla closed 2 years ago

panla commented 2 years ago

is there a handler like python.paho.mqtt message_callback_add? Provide processing function for each topic.

Lenka42 commented 2 years ago

Hi @panla No, you can set only general on_message callback and manually, using message topic or subscription_identifier property process the message.

panla commented 2 years ago

thanks