How to use set_on_disconnect method in fMBT

Best Python code snippet using fMBT_python

mqtt.py

Source:mqtt.py Github

copy

Full Screen

...86 """Allows for setting multiple callbacks via a dictionary"""87 if "on_connect" in callbacks:88 self.set_on_connect(callbacks["on_connect"])89 if "on_disconnect" in callbacks:90 self.set_on_disconnect(callbacks["on_disconnect"])91 if "on_message" in callbacks:92 self.set_on_message(callbacks["on_message"])93 if "on_publish" in callbacks:94 self.set_on_publish(callbacks["on_publish"])95 if "on_subscribe" in callbacks:96 self.set_on_subscribe(callbacks["on_subscribe"])97 if "on_unsubscribe" in callbacks:98 self.set_on_unsubscribe(callbacks["on_unsubscribe"])99 100 def set_on_connect(self, callback):101 """Sets on_connect callback"""102 self.__on_connect_method = callback103 104 def set_on_disconnect(self, callback):105 """Sets on_disconnect callback"""106 self.__on_disconnect_method = callback107 def set_on_message(self, callback):108 """Sets on_message callback"""109 self.__on_message_method = callback110 def set_on_publish(self, callback):111 """Sets on_publish callback"""112 self.__on_publish_method = callback113 114 def set_on_subscribe(self, callback):115 """Sets on_subscribe callback"""116 self.__on_subscribe_method = callback117 118 def set_on_unsubscribe(self, callback):...

Full Screen

Full Screen

mqtt_client.py

Source:mqtt_client.py Github

copy

Full Screen

...18 19 if on_connect:20 self.set_on_connect(on_connect)21 if on_disconnect:22 self.set_on_disconnect(on_disconnect)23 if on_message:24 self.set_on_message(on_message)25 if on_subscribe:26 self.set_on_subscribe(on_subscribe)27 if user_data:28 self.set_user_data(user_data)29 def connect(self, host='localhost'):30 logger.info('Connecting MQTT client')31 logger.info('Host: {}'.format(host))32 self.mqtt_client.connect(host)33 logger.info('MQTT client connected')34 def set_on_connect(self, callback):35 logger.info('Setting on_connect callback')36 logger.info('Callback: {}'.format(callback))37 self.mqtt_client.on_connect = callback38 logger.info('on_connect callback set')39 def set_on_disconnect(self, callback):40 logger.info('Setting on_disconnect callback')41 logger.info('Callback: {}'.format(callback))42 self.mqtt_client.on_disconnect = callback43 logger.info('on_disconnect callback set')44 def set_on_message(self, callback):45 logger.info('Setting on_message callback')46 logger.info('Callback: {}'.format(callback))47 self.mqtt_client.on_message = callback48 logger.info('on_message callback set')49 def set_on_subscribe(self, callback):50 logger.info('Setting on_subscribe callback')51 logger.info('Callback: {}'.format(callback))52 self.mqtt_client.on_subscribe = callback53 logger.info('on_subscribe callback set')...

Full Screen

Full Screen

toby.py

Source:toby.py Github

copy

Full Screen

...14 #print "MESSAGE: " + message15 #toby.send("got your message #bot1")16 print message17bot.set_on_connect(on_connect)18bot.set_on_disconnect(on_disconnect)19bot.set_on_message(on_message)...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run fMBT automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful