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


Python pbutil.ReconnectingPBClientFactory类代码示例

本文整理汇总了Python中buildslave.pbutil.ReconnectingPBClientFactory的典型用法代码示例。如果您正苦于以下问题:Python ReconnectingPBClientFactory类的具体用法?Python ReconnectingPBClientFactory怎么用?Python ReconnectingPBClientFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: clientConnectionLost

 def clientConnectionLost(self, connector, reason):
     log.msg("Lost connection to %s:%s" % (self.buildmaster_host, self.port))
     self.connector = None
     self.stopTimers()
     self.perspective = None
     ReconnectingPBClientFactory.clientConnectionLost(self,
                                                      connector, reason)
开发者ID:jfschedler,项目名称:buildbot,代码行数:7,代码来源:bot.py

示例2: clientConnectionFailed

 def clientConnectionFailed(self, connector, reason):
     self.connector = None
     why = reason
     if reason.check(error.ConnectionRefusedError):
         why = "Connection Refused"
     log.msg("Connection to %s:%s failed: %s" % (self.buildmaster_host, self.port, why))
     ReconnectingPBClientFactory.clientConnectionFailed(self, connector, reason)
开发者ID:benallard,项目名称:buildbot,代码行数:7,代码来源:bot.py

示例3: __init__

 def __init__(self, buildmaster_host, port, keepaliveInterval, maxDelay):
     ReconnectingPBClientFactory.__init__(self)
     self.maxDelay = maxDelay
     self.keepaliveInterval = keepaliveInterval
     # NOTE: this class does not actually make the TCP connections - this information is
     # only here to print useful error messages
     self.buildmaster_host = buildmaster_host
     self.port = port
开发者ID:jfschedler,项目名称:buildbot,代码行数:8,代码来源:bot.py

示例4: gotPerspective

 def gotPerspective(self, perspective):
     ReconnectingPBClientFactory.gotPerspective(self, perspective)
     self.perspective = perspective
     try:
         perspective.broker.transport.setTcpKeepAlive(1)
     except:
         log.msg("unable to set SO_KEEPALIVE")
         if not self.keepaliveInterval:
             self.keepaliveInterval = 10*60
     self.activity()
     if self.keepaliveInterval:
         log.msg("sending application-level keepalives every %d seconds" \
                 % self.keepaliveInterval)
         self.startTimers()
开发者ID:PerilousApricot,项目名称:buildbot,代码行数:14,代码来源:bot.py

示例5: gotPerspective

 def gotPerspective(self, perspective):
     log.msg("Connected to %s:%s; slave is ready" % (self.buildmaster_host, self.port))
     ReconnectingPBClientFactory.gotPerspective(self, perspective)
     self.perspective = perspective
     try:
         perspective.broker.transport.setTcpKeepAlive(1)
     except Exception:
         log.msg("unable to set SO_KEEPALIVE")
         if not self.keepaliveInterval:
             self.keepaliveInterval = 10 * 60
     self.activity()
     if self.keepaliveInterval:
         log.msg("sending application-level keepalives every %d seconds" % self.keepaliveInterval)
         self.startTimers()
开发者ID:benallard,项目名称:buildbot,代码行数:14,代码来源:bot.py

示例6: stopFactory

 def stopFactory(self):
     ReconnectingPBClientFactory.stopFactory(self)
     self.stopTimers()
开发者ID:jfschedler,项目名称:buildbot,代码行数:3,代码来源:bot.py

示例7: startedConnecting

 def startedConnecting(self, connector):
     log.msg("Connecting to %s:%s" % (self.buildmaster_host, self.port))
     ReconnectingPBClientFactory.startedConnecting(self, connector)
     self.connector = connector
开发者ID:jfschedler,项目名称:buildbot,代码行数:4,代码来源:bot.py

示例8: clientConnectionLost

 def clientConnectionLost(self, connector, reason):
     self.connector = None
     self.stopTimers()
     self.perspective = None
     ReconnectingPBClientFactory.clientConnectionLost(self,
                                                      connector, reason)
开发者ID:PerilousApricot,项目名称:buildbot,代码行数:6,代码来源:bot.py

示例9: clientConnectionFailed

 def clientConnectionFailed(self, connector, reason):
     self.connector = None
     ReconnectingPBClientFactory.clientConnectionFailed(self,
                                                        connector, reason)
开发者ID:PerilousApricot,项目名称:buildbot,代码行数:4,代码来源:bot.py

示例10: startedConnecting

 def startedConnecting(self, connector):
     ReconnectingPBClientFactory.startedConnecting(self, connector)
     self.connector = connector
开发者ID:PerilousApricot,项目名称:buildbot,代码行数:3,代码来源:bot.py

示例11: __init__

 def __init__(self, keepaliveInterval, keepaliveTimeout, maxDelay):
     ReconnectingPBClientFactory.__init__(self)
     self.maxDelay = maxDelay
     self.keepaliveInterval = keepaliveInterval
     self.keepaliveTimeout = keepaliveTimeout
开发者ID:PerilousApricot,项目名称:buildbot,代码行数:5,代码来源:bot.py


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