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
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to