• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

JMS topic asknowledge modes

 
Greenhorn
Posts: 7
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to understand what is the reason for creating topic session with acknowledge modes. Since topic is a publish / subscribe implementation, I believe the MQ server should not care if the message was received by some subscribers or not.

I was not able to find an answer to this question. All articles and tutorials are describing how acknowledge modes affect queue, but don't mention how they affect topic. Is there any article that would describe this issue?

Thanks
Gali
 
Ranch Hand
Posts: 110
Google Web Toolkit Java Google App Engine
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I think the theory apply for both types because the acknowledgment is not tied with the type and yes with the fact that the message was or wasn't delivered for a given client, I can be wrong but I'm quite sure of it.

The acknowledgement on topics will ensure that every consumer subscribed on your topic will receive the message once and if the message wasn't delivered successfully, the retry policy will apply.

Let me know if you find something different then this, I would like to know it!
 
al agady
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks, Jayr

It's clear to me now.

Regards
Gali
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic