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


Python Factory.connections方法代码示例

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


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

示例1: testStopTrying

# 需要导入模块: from twisted.internet.protocol import Factory [as 别名]
# 或者: from twisted.internet.protocol.Factory import connections [as 别名]
    def testStopTrying(self):
        f = Factory()
        f.protocol = In
        f.connections = 0
        f.allMessages = []

        c = ReconnectingClientFactory()
        c.initialDelay = c.delay = 0.2
        c.protocol = Out
        c.howManyTimes = 2

        port = reactor.listenTCP(0, f)
        PORT = port.getHost().port
        reactor.connectTCP('127.0.0.1', PORT, c)

        now = time.time()
        while len(f.allMessages) != 2 and (time.time() < now + 10):
            reactor.iterate(0.1)
        util.wait(defer.maybeDeferred(port.stopListening))
        
        self.assertEquals(len(f.allMessages), 2,
                          "not enough messages -- %s" % f.allMessages)
        self.assertEquals(f.connections, 2,
                          "Number of successful connections incorrect %d" %
                          f.connections)
        self.assertEquals(f.allMessages, [Out.msgs] * 2)
        self.failIf(c.continueTrying, "stopTrying never called or ineffective")
开发者ID:pwarren,项目名称:AGDeviceControl,代码行数:29,代码来源:test_factories.py

示例2: testStopTrying

# 需要导入模块: from twisted.internet.protocol import Factory [as 别名]
# 或者: from twisted.internet.protocol.Factory import connections [as 别名]
 def testStopTrying(self):
     f = Factory()
     f.protocol = In
     f.connections = 0
     f.allMessages = []
     f.goal = 2
     f.d = defer.Deferred()
     c = ReconnectingClientFactory()
     c.initialDelay = c.delay = 0.2
     c.protocol = Out
     c.howManyTimes = 2
     self.port = reactor.listenTCP(0, f)
     port = self.port
     PORT = port.getHost().port
     reactor.connectTCP('127.0.0.1', PORT, c)
     f.d.addCallback(self._testStopTrying_1, f, c)
     return f.d
开发者ID:,项目名称:,代码行数:19,代码来源:


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