I certainly wouldn't recommend using AUTO_ACKNOWLEDGE if you want guarantees
of delivery.

In psuedo code:

  | public MessageConsumer::receive(long timeout)
  | {
  |    Message message = internalReceive(timeout);
  |    
  |    // Message is acknowledged before you even see the message
  |    if (message != null && session.isAutoAcknowledge())
  |       message.acknowledge(); 
  | 
  |    return message;
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3907432#3907432

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3907432


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to