def clientConnectionMade(self, broker): self.resetDelay() PBClientFactory.clientConnectionMade(self, broker) if self._doingLogin: self.doLogin(self._root) if self._doingGetPerspective: self.doGetPerspective(self._root) self.gotRootObject(self._root)
def clientConnectionMade(self, broker): log.debug("clientConnectionMade") self.resetDelay() self._cancelConnectTimeout() PBClientFactory.clientConnectionMade(self, broker) if self._creds: self._startConnectTimeout("Login") self._login(self._creds)
def clientConnectionMade(self, broker): zenlog.debug("Connected") self._cancelConnectTimeout() self.resetDelay() PBClientFactory.clientConnectionMade(self, broker) if self._doingLogin: self._startConnectTimeout("Login") self.doLogin(self._root) if self._doingGetPerspective: self.doGetPerspective(self._root) self.gotRootObject(self._root)
def clientConnectionMade(self, broker): self.resetDelay() PBClientFactory.clientConnectionMade(self, broker) self.doLogin(self._root, broker) self.gotRootObject(self._root)