Package org.hibernate
Interface SessionEventListener
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
SessionEventListenerManager
- All Known Implementing Classes:
BaseSessionEventListener
public interface SessionEventListener extends java.io.SerializableNOTE : Consider this an incubating API, likely to change as wider usage indicates changes that need to be made
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcacheGetEnd(boolean hit)voidcacheGetStart()voidcachePutEnd()voidcachePutStart()voiddirtyCalculationEnd(boolean dirty)voiddirtyCalculationStart()voidend()voidflushEnd(int numberOfEntities, int numberOfCollections)voidflushStart()voidjdbcConnectionAcquisitionEnd()voidjdbcConnectionAcquisitionStart()voidjdbcConnectionReleaseEnd()voidjdbcConnectionReleaseStart()voidjdbcExecuteBatchEnd()voidjdbcExecuteBatchStart()voidjdbcExecuteStatementEnd()voidjdbcExecuteStatementStart()voidjdbcPrepareStatementEnd()voidjdbcPrepareStatementStart()voidpartialFlushEnd(int numberOfEntities, int numberOfCollections)voidpartialFlushStart()voidtransactionCompletion(boolean successful)
-
-
-
Method Detail
-
transactionCompletion
void transactionCompletion(boolean successful)
-
jdbcConnectionAcquisitionStart
void jdbcConnectionAcquisitionStart()
-
jdbcConnectionAcquisitionEnd
void jdbcConnectionAcquisitionEnd()
-
jdbcConnectionReleaseStart
void jdbcConnectionReleaseStart()
-
jdbcConnectionReleaseEnd
void jdbcConnectionReleaseEnd()
-
jdbcPrepareStatementStart
void jdbcPrepareStatementStart()
-
jdbcPrepareStatementEnd
void jdbcPrepareStatementEnd()
-
jdbcExecuteStatementStart
void jdbcExecuteStatementStart()
-
jdbcExecuteStatementEnd
void jdbcExecuteStatementEnd()
-
jdbcExecuteBatchStart
void jdbcExecuteBatchStart()
-
jdbcExecuteBatchEnd
void jdbcExecuteBatchEnd()
-
cachePutStart
void cachePutStart()
-
cachePutEnd
void cachePutEnd()
-
cacheGetStart
void cacheGetStart()
-
cacheGetEnd
void cacheGetEnd(boolean hit)
-
flushStart
void flushStart()
-
flushEnd
void flushEnd(int numberOfEntities, int numberOfCollections)
-
partialFlushStart
void partialFlushStart()
-
partialFlushEnd
void partialFlushEnd(int numberOfEntities, int numberOfCollections)
-
dirtyCalculationStart
void dirtyCalculationStart()
-
dirtyCalculationEnd
void dirtyCalculationEnd(boolean dirty)
-
end
void end()
-
-