每分钟尝试一次qpid

7y4bm7vi  于 2021-08-25  发布在  Java
关注(0)|答案(0)|浏览(337)

我不熟悉qpid proton python和amqp。有一件事我有点被卡住了,我希望我能得到社区的一些支持。
我的应用程序要求之一是每分钟重新尝试连接,如果从我的应用程序到message broker(activemq)的连接已丢失。
从源代码和this:documentation(第5.2.4节,第14页)来看,在on_启动事件期间调用“container.connect()”方法时,似乎可以为“reconnect”参数创建一个自定义退避示例。
因此,我对自定义退避示例执行了类似的操作:

  1. class Backoff:
  2. """
  3. A modified reconnect strategy that retries, every 60s.
  4. Repeated calls to :meth:`next` returns a value for the next delay
  5. """
  6. def __init__(self):
  7. self.delay = 60
  8. def reset(self):
  9. """
  10. Reset the backoff delay to 60 seconds.
  11. (This method is required for Qpid Proton Library)
  12. """
  13. self.delay = 60
  14. def next(self):
  15. """
  16. Modified the backoff mechanism to attempt reconnect every 60s
  17. :return: The next delay in seconds.
  18. :rtype: ``float``
  19. """
  20. return self.delay

在on_启动期间:

  1. def on_start(self, event):
  2. self.container = event.container
  3. self.conn = self.container.connect(
  4. url=self.url, user=self.user, password=self.password, reconnect=Backoff())

问题:
我可以知道如何测试这是否真的工作正常吗?我将print语句放在自定义退避示例的“next()”方法中,并断开wifi以模拟断开连接,但是,重新连接的尝试似乎不起作用。
在容器运行时,如何捕获断开连接事件并尝试重新连接?
任何建议都将不胜感激,谢谢!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题