smallrye-reactive-messaging
smallrye-reactive-messaging copied to clipboard
RabbitMQ - Use of Transactional on @Incoming and @Outgoing
Hi,
I went through the documentation but I cannot find anything related to the JTA. I would like to know if is it possible to create transaction towards RabbitMQ in order to make atomic transaction over the RabbitMQ consume / publish operations meaning consumed and published message will be atomic operation on the RabbitMQ?
JTA is not supported (as it requires a synchronous blocking model).
It looks like annotating the method with @Transactional
enables the blocking behavior but this does not take transactions into account.