-
Hi all, Anyway, by following the example provided at https://quarkus.io/guides/lra, we are not able to pass the "userData" through the @compensate and @complete callbacks. Seeing the LRA official specs available here, it seems that passing custom data between callbacks is not possible. Is there a way to accomplish this use case? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
-
Hi @ziomill, in the current version of the spec, the passing of user data is not supported in terms of the defined protocol. However, you can achieve this in this manner:
Or use database, filesystem, or any other form of message. Hopefully this helps. |
Beta Was this translation helpful? Give feedback.
Hi @ziomill, in the current version of the spec, the passing of user data is not supported in terms of the defined protocol.
However, you can achieve this in this manner:
Or use da…