public interface RollbackListener
RollbackListener
interface defines the callback operations that
enable a Resource Adaptor to be notified of the outcome of an asynchronous
rollback operation. An asynchronous rollback operation is performed by invoking
either SleeTransaction.asyncRollback(javax.slee.transaction.RollbackListener)
or SleeTransactionManager.asyncRollback(javax.slee.transaction.RollbackListener)
.Modifier and Type | Method and Description |
---|---|
void |
rolledBack()
This method is invoked by the SLEE to indicate the transaction rollback was successful.
|
void |
systemException(SystemException se)
This method is invoked by the SLEE to indicate that the transaction manager
encountered an unexpected error while attempting to roll back the transaction.
|
void rolledBack()
void systemException(SystemException se)
se
- the SystemException
which may provide information
about the unexpected error.