ActiveMQ - is it possible to acknowledge single message in CLIENT_ACKNOWLEDGE mode
According to http://docs.oracle.com/javaee/6/api/javax/jms/Message.html#acknowledge() A client may individually acknowledge each message as it is consumed, or it may choose to acknowledge messages as an application-defined group (which is done by calling acknowledge on the last received message of the group, thereby acknowledging all messages consumed by the session.) How can I do it in ActiveMQ? I was unable to make it work. here is example with ActiveMQ client, import javax.jms.Connection; import javax.jms.JMSException; import org.apache.activemq.ActiveMQConnectionFactory; import org.apache