Uses of Interface
org.hibernate.SessionEventListener
-
Packages that use SessionEventListener Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
. -
-
Uses of SessionEventListener in org.hibernate
Classes in org.hibernate that implement SessionEventListener Modifier and Type Class Description class
BaseSessionEventListener
A no-op implementation of SessionEventListener.Methods in org.hibernate with parameters of type SessionEventListener Modifier and Type Method Description void
Session. addEventListeners(SessionEventListener... listeners)
Add one or more listeners to the SessionSessionBuilder
SessionBuilder. eventListeners(SessionEventListener... listeners)
Add one or moreSessionEventListener
instances to the list of listeners for the new session to be built. -
Uses of SessionEventListener in org.hibernate.engine.internal
Classes in org.hibernate.engine.internal that implement SessionEventListener Modifier and Type Class Description class
SessionEventListenerManagerImpl
class
StatisticalLoggingSessionEventListener
Methods in org.hibernate.engine.internal with parameters of type SessionEventListener Modifier and Type Method Description void
SessionEventListenerManagerImpl. addListener(SessionEventListener... additionalListeners)
Constructors in org.hibernate.engine.internal with parameters of type SessionEventListener Constructor Description SessionEventListenerManagerImpl(SessionEventListener... initialListener)
-
Uses of SessionEventListener in org.hibernate.engine.spi
Subinterfaces of SessionEventListener in org.hibernate.engine.spi Modifier and Type Interface Description interface
SessionEventListenerManager
Methods in org.hibernate.engine.spi with parameters of type SessionEventListener Modifier and Type Method Description void
SessionDelegatorBaseImpl. addEventListeners(SessionEventListener... listeners)
void
SessionLazyDelegator. addEventListeners(SessionEventListener... listeners)
void
SessionEventListenerManager. addListener(SessionEventListener... listeners)
SessionBuilder
AbstractDelegatingSessionBuilder. eventListeners(SessionEventListener... listeners)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. eventListeners(SessionEventListener... listeners)
-
Uses of SessionEventListener in org.hibernate.internal
Methods in org.hibernate.internal that return SessionEventListener Modifier and Type Method Description SessionEventListener[]
BaselineSessionEventsListenerBuilder. buildBaseline()
Methods in org.hibernate.internal that return types with arguments of type SessionEventListener Modifier and Type Method Description List<SessionEventListener>
BaselineSessionEventsListenerBuilder. buildBaselineList()
Class<? extends SessionEventListener>
BaselineSessionEventsListenerBuilder. getAutoListener()
List<SessionEventListener>
SessionCreationOptions. getCustomSessionEventListener()
List<SessionEventListener>
SessionFactoryImpl.SessionBuilderImpl. getCustomSessionEventListener()
List<SessionEventListener>
SessionFactoryImpl.StatelessSessionBuilderImpl. getCustomSessionEventListener()
Methods in org.hibernate.internal with parameters of type SessionEventListener Modifier and Type Method Description void
SessionImpl. addEventListeners(SessionEventListener... listeners)
SessionFactoryImpl.SessionBuilderImpl
SessionFactoryImpl.SessionBuilderImpl. eventListeners(SessionEventListener... listeners)
Constructors in org.hibernate.internal with parameters of type SessionEventListener Constructor Description ContextualJdbcConnectionAccess(String tenantIdentifier, SessionEventListener listener, MultiTenantConnectionProvider connectionProvider)
NonContextualJdbcConnectionAccess(SessionEventListener listener, ConnectionProvider connectionProvider)
Constructor parameters in org.hibernate.internal with type arguments of type SessionEventListener Constructor Description BaselineSessionEventsListenerBuilder(boolean logSessionMetrics, Class<? extends SessionEventListener> autoListener)
-