Twisted - I need to periodically connect/disconnect a client connection

孤街醉人 提交于 2019-12-11 05:43:29

问题


I have a twisted tcp client that I would like to periodically cause to connect, receive a stream of date for n seconds, then disconnect. After disconnecting n seconds would elapse before the process started over again.

Below is a very abbreviated extract of the code I've tried so far. When I run the code the reactor.stop() is issued, and after the sleep elapses I get a twisted.internet error 'ReactorAlreadyRunning' when the reactor.run() is invoked in startClientConnection()

I'm a raw novice at using twisted and I'm not sure what I've done wrong. Any help will be much appreciated.

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:


reactor.run() should be run only once.

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()


来源:https://stackoverflow.com/questions/20649597/twisted-i-need-to-periodically-connect-disconnect-a-client-connection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!