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)
def connectionLost(self, reason): log.debug("connection lost %s" % reason) AMQClient.connectionLost(self, reason) self.factory.onConnectionLost(reason)
def connectionLost(self, *args, **kwargs): AMQClient.connectionLost(self, *args, **kwargs) self.factory.onConnectionLost.callback(self)
def connectionLost(self, reason): AMQClient.connectionLost(self, reason) self.connected = 0 self.factory.delConnection(self)
def connectionLost(self, failure): AMQClient.connectionLost(self, failure) self.factory.lostConnection(failure)