Dear @rstoyanchev , could you please share how to acknowledge a message?
I have set the stomp headers when subscribing.
final StompHeaders headers = new StompHeaders();
headers.setDestination(destination);
headers.setAck("client");
session.subscribe(headers, new StompSessionHandlerAdapter(){});
but when I try to ack the message, there is no method for it on StompSession interface. Is it by design?
Dear @rstoyanchev , could you please share how to acknowledge a message?
I have set the stomp headers when subscribing.
but when I try to ack the message, there is no method for it on StompSession interface. Is it by design?
Thank you.