-
Hi all;
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi,
To mimic a XA transaction you can use an explicit Storer.
|
Beta Was this translation helpful? Give feedback.
-
Hi all;
|
Beta Was this translation helpful? Give feedback.
-
Hi,
To mimic a XA transaction you can use an explicit Storer.
|
Beta Was this translation helpful? Give feedback.
Hi,
From our docu regarding transaction:
To mimic a XA transaction you can use an explicit Storer.
Storer storer = storageManager.createStorer()
That way you have two phases:
Data Collection
After creating a new storer it has no data to store. To “collect” that data use the store() and storeAll() methods of the storer. You can do more than one ’store()’.
If you decide to abort…