连接失败后重新启动 Twisted-python Reactor

发布于 2024-10-18 21:21:02 字数 224 浏览 1 评论 0原文

我正在编写一个具有多个客户端的服务器。当客户端启动时,服务器可能尚未工作。因此,reactor.connectTCP 可能会失败(无接收端)。目前,我正在通过在 reactor.run 上循环来解决这个问题,即:

  1. 如果失败,请连接到服务器
  2. reactor.run
  3. ,重复

我知道这不是扭曲的方法。那我该怎么办呢?

I am writing a server with multiple clients. When a client starts, the server may not yet be working. So a reactor.connectTCP may fail (no receiving end). Currently I'm solving this by looping on a reactor.run, i.e.:

  1. connect to server
  2. reactor.run
  3. if fails, repeat

I understand this is not the way to do it in twisted. How can I do it then?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕烟庭风 2024-10-25 21:21:02

您始终可以尝试在 connectionLost 处理程序中重新连接,例如:

from twisted.internet.protocol import ClientFactory

class EchoClientFactory(ClientFactory):
    def clientConnectionLost(self, connector, reason):
        connector.connect()

甚至还有一个内置的 ReconnectingClientFactory。另请参阅:有关重新连接的简介。

You can always try to reconnect within your connectionLost handler, for example:

from twisted.internet.protocol import ClientFactory

class EchoClientFactory(ClientFactory):
    def clientConnectionLost(self, connector, reason):
        connector.connect()

There is also even a built-in ReconnectingClientFactory. See also: this blurb on reconnection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文