Exam MCD - Level 1 All QuestionsBrowse all questions from this exam
Question 26

A flow has a JMS Publish consume operation followed by a JMS Publish operation. Both of these operations have the default configurations.

Which operation is asynchronous and which one is synchronous?

    Correct Answer: A

    In the context of JMS (Java Message Service) operations, a 'Publish consume' operation, which involves publishing a message and waiting for a response, is typically synchronous because it waits for a reply before continuing. On the other hand, a 'Publish' operation involves sending a message to a destination without waiting for any immediate response, making it asynchronous. Therefore, the 'Publish consume' operation is synchronous, and the 'Publish' operation is asynchronous.

Discussion
lelebc10baarOption: A

A is ans