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


Python AMQClient.connectionLost方法代码示例

本文整理汇总了Python中txamqp.protocol.AMQClient.connectionLost方法的典型用法代码示例。如果您正苦于以下问题:Python AMQClient.connectionLost方法的具体用法?Python AMQClient.connectionLost怎么用?Python AMQClient.connectionLost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在txamqp.protocol.AMQClient的用法示例。


在下文中一共展示了AMQClient.connectionLost方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: connectionLost

# 需要导入模块: from txamqp.protocol import AMQClient [as 别名]
# 或者: from txamqp.protocol.AMQClient import connectionLost [as 别名]
 def connectionLost(self, reason):
     """
     Remove this protocol as a consumer of log events.
     """
     self.chan = None
     self.dispatcher.unregister(self.producer.put)
     log.err(reason, "Connection lost")
     AMQClient.connectionLost(self, reason)
开发者ID:mailgun,项目名称:udplog,代码行数:10,代码来源:rabbitmq.py

示例2: connectionLost

# 需要导入模块: from txamqp.protocol import AMQClient [as 别名]
# 或者: from txamqp.protocol.AMQClient import connectionLost [as 别名]
 def connectionLost(self, reason):
     log.debug("connection lost %s" % reason)
     AMQClient.connectionLost(self, reason)
     self.factory.onConnectionLost(reason)
开发者ID:malysoun,项目名称:zenoss-protocols,代码行数:6,代码来源:amqp.py

示例3: connectionLost

# 需要导入模块: from txamqp.protocol import AMQClient [as 别名]
# 或者: from txamqp.protocol.AMQClient import connectionLost [as 别名]
 def connectionLost(self, reason):
     AMQClient.connectionLost(self, reason)
     self.connected = 0
     self.factory.delConnection(self)
开发者ID:FZambia,项目名称:cyclone-sse,代码行数:6,代码来源:amqp.py

示例4: connectionLost

# 需要导入模块: from txamqp.protocol import AMQClient [as 别名]
# 或者: from txamqp.protocol.AMQClient import connectionLost [as 别名]
 def connectionLost(self, *args, **kwargs):
     AMQClient.connectionLost(self, *args, **kwargs)
     self.factory.onConnectionLost.callback(self)
开发者ID:euan,项目名称:richmond,代码行数:5,代码来源:base.py

示例5: connectionLost

# 需要导入模块: from txamqp.protocol import AMQClient [as 别名]
# 或者: from txamqp.protocol.AMQClient import connectionLost [as 别名]
 def connectionLost(self, failure):
     AMQClient.connectionLost(self, failure)
     self.factory.lostConnection(failure)
开发者ID:yunmanger1,项目名称:task-mapreduce,代码行数:5,代码来源:utils.py


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