public interface

AfterTransactionCompletionProcess

org.hibernate.action.AfterTransactionCompletionProcess
Known Indirect Subclasses

Class Overview

Contract representing some process that needs to occur during after transaction completion.

Summary

Public Methods
abstract void doAfterTransactionCompletion(boolean success, SessionImplementor session)
Perform whatever processing is encapsulated here after completion of the transaction.

Public Methods

public abstract void doAfterTransactionCompletion (boolean success, SessionImplementor session)

Perform whatever processing is encapsulated here after completion of the transaction.

Parameters
success Did the transaction complete successfully? True means it did.
session The session on which the transaction is completing.