Package org.hibernate.cache.spi
Class AbstractCacheTransactionSynchronization
java.lang.Object
org.hibernate.cache.spi.AbstractCacheTransactionSynchronization
- All Implemented Interfaces:
CacheTransactionSynchronization
- Direct Known Subclasses:
StandardCacheTransactionSynchronization
public abstract class AbstractCacheTransactionSynchronization
extends Object
implements CacheTransactionSynchronization
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlong
What is the start time of this context object?void
transactionCompleted
(boolean successful) Callback that the underling resource transaction to which the owning Session was joined is in the "completed" stage.final void
Callback that the underling resource transaction to which the owning Session was joined is in the beginning stages of completing.final void
Callback that owning Session has become joined to a resource transaction.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.cache.spi.CacheTransactionSynchronization
transactionResumed, transactionSuspended
-
Constructor Details
-
AbstractCacheTransactionSynchronization
-
-
Method Details
-
getCachingTimestamp
public long getCachingTimestamp()Description copied from interface:CacheTransactionSynchronization
What is the start time of this context object?- Specified by:
getCachingTimestamp
in interfaceCacheTransactionSynchronization
-
transactionJoined
public final void transactionJoined()Description copied from interface:CacheTransactionSynchronization
Callback that owning Session has become joined to a resource transaction.- Specified by:
transactionJoined
in interfaceCacheTransactionSynchronization
-
transactionCompleting
public final void transactionCompleting()Description copied from interface:CacheTransactionSynchronization
Callback that the underling resource transaction to which the owning Session was joined is in the beginning stages of completing. Note that this is only called for successful "begin completion" of the underlying resource transaction (not rolling-back, marked-for-rollback, etc)- Specified by:
transactionCompleting
in interfaceCacheTransactionSynchronization
-
transactionCompleted
public void transactionCompleted(boolean successful) Description copied from interface:CacheTransactionSynchronization
Callback that the underling resource transaction to which the owning Session was joined is in the "completed" stage. This method is called regardless of success or failure of the transaction - the outcome is passed as a boolean.- Specified by:
transactionCompleted
in interfaceCacheTransactionSynchronization
- Parameters:
successful
- Was the resource transaction successful?
-