Interface TransactionFailureCallback
- All Known Subinterfaces:
LoaderCallback
public interface TransactionFailureCallback
A Callback to receive information about bad transactions for extra cleanup required for broken transactions such as
large messages.
-
Method Summary
Modifier and TypeMethodDescriptionvoidfailedTransaction(long transactionID, List<RecordInfo> records, List<RecordInfo> recordsToDelete) To be used to inform about transactions without commit records.
-
Method Details
-
failedTransaction
void failedTransaction(long transactionID, List<RecordInfo> records, List<RecordInfo> recordsToDelete) To be used to inform about transactions without commit records. This could be used to remove extra resources associated with the transactions (such as external files received during the transaction)
-