扭曲 - 我需要定期连接/断开客户端连接

时间:2013-12-18 04:25:41

标签: python twisted twisted.client

我有一个扭曲的tcp客户端,我想定期连接,接收n秒的日期流,然后断开连接。 断开连接后n秒将再次开始进程。

下面是我到目前为止尝试过的代码的一个非常简短的摘录。 当我运行代码时,发出了reactor.stop(),在睡眠过去之后,当在startClientConnection()中调用reactor.run()时,我得到一个twisted.internet错误'ReactorAlreadyRunning'

我是一个使用扭曲的原始新手,我不知道我做错了什么。任何帮助将不胜感激。

class TCPClientFactory(ReconnectingClientFactory)
   def startedConnecting(self, connector):
       pass

   def buildProtocol(self, addr):
       self.resetDelay()
       return MsgProcessor()

   def clientConnectionLost(self, connector, reason):
       ReconnectingClientFactory.clientConnectionLost(self, connector, reason)

   def clientConnectionFailed(self, connector, reason):
       ReconnectingClientFactory.clientConnectionFailed(self, connector, reason)        


class mainClass(object):
    def __init__(self):
        ...

    def startClientConnection(self):
        reactor.connectTCP(host, port, TCPClientFactory())
        reactor.callLater(60, self.periodic_connect_manager)
        reactor.run()

    def periodic_connect_manager(self):
        reactor.stop()
        time.sleep(60)
        self.startClientConnection()

1 个答案:

答案 0 :(得分:2)

reactor.run()只能运行一次。

from twisted.internet import task, reactor

def connect():
    do_connect()
    reactor.callLater(60, disconnect) # disconnect in a minute

task.LoopingCall(connect).start(120) # call connect() every 2 minutes
reactor.run()