Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我是否有一个属性允许配置 JMS 消费者代理轮询队列/主题的频率?
我不认为这样的机制可用。通常,如果消息进入队列,它会被侦听器删除。移除一个元素和下一个元素之间的时间是可变的,并且取决于其他几个因素。
但是您可以通过拥有两个队列来实现这一点。您可以创建一个线程以在预定时间内将消息从一个队列移动到另一个队列。因此,在第二个队列中,一条消息仅在特定时间间隔内可用。