Skip to content

Commit

Permalink
Fix typo in JMS consumer samples
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Nov 21, 2024
1 parent 12a607f commit 0869e72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JMS message producer - Manual acknowledgment
# JMS message consumer - Manual acknowledgment

The `jms:MessageConsumer` allows manual acknowledgment for received messages. A `jms:MessageConsumer` can be initialized by using a `jms:Session` object. To configure manual acknowledgment mode, create a `jms:Session` object with the acknowledge mode set to `jms:CLIENT_ACKNOWLEDGE`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JMS message producer - Consume messages
# JMS message consumer - Consume messages

The `jms:MessageConsumer` allows fetching individual messages one by one from a given JMS provider. A `jms:MessageConsumer` can be initialized by using a `jms:Session` object. To pull messages from the JMS provider, use either of the `receive` or `receiveNoWait` methods. It is possible to use automatic or manual acknowledgments similar to the consumer service. Use it to pull messages one by one from a JMS destination in the JMS provider.

Expand Down

0 comments on commit 0869e72

Please sign in to comment.