Skip to content

Commit

Permalink
Update data-store-variables-and-jms-queues-when-to-use-which-option-6…
Browse files Browse the repository at this point in the history
…bc21cb.md

Fix wrong direction mentioned for JMS adapter.
Add info about Data Store Sender adapter.
  • Loading branch information
fippu82 authored Dec 8, 2023
1 parent a74cfa6 commit eafa564
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ JMS queue
</td>
<td valign="top">

You can use the JMS sender adapter to store messages in a JMS queue. One important key characteristic of the Java Message Service \(JMS\) feature is the support of high-speed messaging with high throughput. This is why it offers the optimal solution for reliable messaging using asynchronous decoupling. JMS is a Java-based standard application programming interface \(API\) for sending and receiving messages. It enables efficient asynchronous communication based on a JMS message broker between different components. The JMS message broker is a separate runtime component that ensures that messages in JMS queues in the JMS message broker are treated separately. The JMS adapter is used to store messages in the JMS queue and to consume messages from the JMS queue in the JMS message broker.
You can use the JMS receiver adapter to store messages in a JMS queue. One important key characteristic of the Java Message Service \(JMS\) feature is the support of high-speed messaging with high throughput. This is why it offers the optimal solution for reliable messaging using asynchronous decoupling. JMS is a Java-based standard application programming interface \(API\) for sending and receiving messages. It enables efficient asynchronous communication based on a JMS message broker between different components. The JMS message broker is a separate runtime component that ensures that messages in JMS queues in the JMS message broker are treated separately. The JMS adapter is used to store messages in the JMS queue and to consume messages from the JMS queue in the JMS message broker.

The processing sequence used by the JMS adapter is first-in, first-out \(FIFO\). However, because of parallel processing and retry handling this does not mean that messages are processed in a guaranteed order.

Expand Down Expand Up @@ -122,7 +122,7 @@ What is the frequency of consumption?
</td>
<td valign="top">

Whenever a message is initiated by a client's call or a timer \(scheduler\)
Whenever a message is initiated by a client's call or a timer \(scheduler\), or pushed to the integration flow automatically by the Data Store sender adapter.

</td>
<td valign="top">
Expand Down

0 comments on commit eafa564

Please sign in to comment.