Session.AUTO_ACKNOWLEDGE 上的 JMS Message.acknowledge()

发布于 2024-09-09 02:33:13 字数 193 浏览 8 评论 0原文

当在 AUTO_ACKNOWLEDGE 模式的会话中调用 Message.acknowledge() 时,TIBCO 中会发生什么?

我的意思是这个调用在客户端被忽略了吗?或者服务器端?或者服务器是否对此调用执行任何操作?

我问的原因是有一个应用程序可以在自动确认会话中确认消息。在高负载期间,方法执行时间从 0.5 毫秒增加到 30 毫秒。

What happens in TIBCO when Message.acknowledge() is invoked in a session with AUTO_ACKNOWLEDGE mode?

I mean is this call ignored on client-side? or server-side? or does server perform any action on this call?

The reason I ask is that there is an application which acks messasges in an auto acknowledge session. And a during highload period the method execution time is increased from 0.5 ms to 30 ms.

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

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

发布评论

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

评论(1

猫七 2024-09-16 02:33:13

根据 Java 消息服务,第二版

acknowledge()方法应该只
与 CLIENT_ACKNOWLEDGE 一起使用
模式;如果与 AUTO_ACKNOWL 一起使用
EDGE 或 DUPS_OK_ACKNOWLEDGE 模式,
JMS 提供者忽略调用。

According to Java Message Service, Second Edition

The acknowledge() method should only
be used with the CLIENT_ACKNOWLEDGE
mode; if used with the AUTO_ACKNOWL
EDGE or DUPS_OK_ACKNOWLEDGE mode, the
call is ignored by the JMS provider.

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