Skip to content

Instantly share code, notes, and snippets.

@danielkec
Created November 24, 2020 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielkec/80b1521b7eebf56563773ff82abf05fd to your computer and use it in GitHub Desktop.
Save danielkec/80b1521b7eebf56563773ff82abf05fd to your computer and use it in GitHub Desktop.
@Incoming("from-jms")
@Acknowledgment(Acknowledgment.Strategy.MANUAL)
public CompletionStage<?> consumeJms(JmsMessage<String> msg) {
System.out.println("JMS says: " + msg.getPayload());
return msg.ack();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment