DEVFYI - Developer Resource - FYI

Does JMS specification define transactions? Queue

JMS Interview Questions and Answers


(Continued from previous question...)

16. Does JMS specification define transactions? Queue

JMS specification defines a transaction mechanisms allowing clients to send and receive groups of logically bounded messages as a single unit of information. A Session may be marked as transacted. It means that all messages sent in a session are considered as parts of a transaction. A set of messages can be committed (commit() method) or rolled back (rollback() method). If a provider supports distributed transactions, it's recommended to use XAResource API.

(Continued on next question...)

Other Interview Questions