Yevgeny
Yevgeny

Reputation: 31

Are there any limits on transaction chain?

I tried to use transaction chain instead of data broker to create all transactions for the runtime of the product but failed with indication that the chain does not exist anymore. The question is if transaction chain can produce only limited number of transactions or the lifetime of the chain has some limit.

Upvotes: 0

Views: 60

Answers (1)

Tom Pantelis
Tom Pantelis

Reputation: 1349

There's no limit to the number of transactions but if a single transaction fails then that fails the whole chain and renders it unusable. Hence the reason for passing in a TransactionChainListener. The javadocs provide the details.

Upvotes: 1

Related Questions