当前位置: 首页>>代码示例>>Python>>正文


Python MQSyncReq.write_message方法代码示例

本文整理汇总了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})
开发者ID:Dsls,项目名称:domogik,代码行数:19,代码来源:admin.py


注:本文中的domogik.mq.reqrep.client.MQSyncReq.write_message方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。