[jboss-user] [Messaging, JMS & JBossMQ] - Re: Removing a message from the queue

adrian@jboss.org do-not-reply at jboss.com
Wed Jul 18 13:45:50 EDT 2007


You're on the wrong track. JMS is not a database where you do CRUD operations.

Redelivery of messages is a part of the JMS api.

If the client does not acknowledge a message (for whatever reason)
then it will be redelivered with the redelivered flag set:


  | if (message.getJMSRedelivered()) {
  |    // take extra care
  | }
  | 

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

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



More information about the jboss-user mailing list