从 stomp API 设置预取限制

set prefetch limit from stomp API

AMQ docs 请注意,可以在建立连接时设置预取限制 - 有没有办法使用 stomp.py 设置预取限制 实例化队列连接时?

我也问过自己这个问题,所以如果有人仍然需要帮助解决这个问题:

可以将 ActiveMQ headers 添加为字典。可能配置的完整列表是 here.

因此,例如要执行更改预取限制所需的操作,您需要在订阅中添加 headers:

connection = stomp.Connection()
connection.start()
connection.connect('username', 'password', wait=True)

# set callback
connection.set_listener('', self)
connection.subscribe(destination='/queue/test', id=1, ack='auto', headers={'activemq.prefetchSize': 1})