ActiveMQ Session AUTO_ACKNOWLEDGE Action

Can someone explain to me what affects Session.AUTO_ACKNOWLEDGE for JMS ActiveMQ configurations

session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
+5
source share
1 answer

I believe that by default, ActiveMQ is configured to automatically acknowledge messages. This means that when a message arrives, it will automatically confirm that the message has arrived. This is the same as calling .acknow () from a JMS object.

, , JMS- - . , JMS, . JMS .

+5

All Articles