本文整理汇总了Python中domogik.mq.reqrep.client.MQSyncReq.write_message方法的典型用法代码示例。如果您正苦于以下问题:Python MQSyncReq.write_message方法的具体用法?Python MQSyncReq.write_message怎么用?Python MQSyncReq.write_message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类domogik.mq.reqrep.client.MQSyncReq
的用法示例。
在下文中一共展示了MQSyncReq.write_message方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_message
# 需要导入模块: from domogik.mq.reqrep.client import MQSyncReq [as 别名]
# 或者: from domogik.mq.reqrep.client.MQSyncReq import write_message [as 别名]
def on_message(self, msg, content=None):
if not content:
# this is a websocket message
jsons = json.loads(msg)
if 'action' in jsons and 'data' in jsons:
cli = MQSyncReq(zmq.Context())
msg = MQMessage()
msg.set_action(str(jsons['action']))
msg.set_data(jsons['data'])
if 'dst' in jsons:
print cli.request(str(jsons['dst']), msg.get(), timeout=10).get()
else:
print cli.request('manager', msg.get(), timeout=10).get()
else:
# this is a mq message
for cli in AdminWebSocket.clients:
cli.write_message({"msgid": msg, "content": content})