Send a single event to the master, with the payload "data" and the event identifier "tag". Default timeout is 1000ms
(self, data, tag, timeout=1000)
| 939 | return True |
| 940 | |
| 941 | def fire_master(self, data, tag, timeout=1000): |
| 942 | """' |
| 943 | Send a single event to the master, with the payload "data" and the |
| 944 | event identifier "tag". |
| 945 | |
| 946 | Default timeout is 1000ms |
| 947 | """ |
| 948 | msg = {"tag": tag, "data": data, "events": None, "pretag": None} |
| 949 | return self.fire_event(msg, "fire_master", timeout) |
| 950 | |
| 951 | def destroy(self): |
| 952 | if self.subscriber is not None: |