Is there a way to retrieve the information (writeSet of Transaction) out of the TransactionEventHandler?
public class NewTransactionEventHandler<T> implements TransactionEventHandler<T>
{
@Override
public T beforeCommit(TransactionData transactionData)
I'd like to get that transactionData Object after the transaction finished successfully or unsuccessfully
TransactionEventHandler.afterCommitandTransactionEventHandler.afterRollbackis probably what you're looking for.TransactionDatagives you access to the changes.