Uses of Interface
org.hibernate.SessionEventListener
Packages that use SessionEventListener
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.A range of SPIs allowing integration with—and customization of—the process of building metadata.
Support for many of the internal workings of Hibernate.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate.-
Uses of SessionEventListener in org.hibernate
Classes in org.hibernate that implement SessionEventListenerModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version.Methods in org.hibernate with parameters of type SessionEventListenerModifier and TypeMethodDescriptionvoidSession.addEventListeners(SessionEventListener... listeners) Add one or more listeners to the SessionSessionBuilder.eventListeners(SessionEventListener... listeners) Add one or moreSessionEventListenerinstances to the list of listeners for the new session to be built.SharedSessionBuilder.eventListeners(SessionEventListener... listeners) -
Uses of SessionEventListener in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SessionEventListenerModifier and TypeMethodDescriptiondefault SessionEventListener[]SessionFactoryOptions.buildSessionEventListeners()Build an array of baselineSessionEventListeners. -
Uses of SessionEventListener in org.hibernate.engine.internal
Classes in org.hibernate.engine.internal that implement SessionEventListenerModifier and TypeClassDescriptionclassclassTracks and logs certain session-level metrics.Methods in org.hibernate.engine.internal with parameters of type SessionEventListenerModifier and TypeMethodDescriptionvoidSessionEventListenerManagerImpl.addListener(SessionEventListener... additionalListeners) Constructors in org.hibernate.engine.internal with parameters of type SessionEventListenerModifierConstructorDescriptionSessionEventListenerManagerImpl(SessionEventListener... initialListener) Constructor parameters in org.hibernate.engine.internal with type arguments of type SessionEventListenerModifierConstructorDescriptionSessionEventListenerManagerImpl(List<SessionEventListener> initialListener) -
Uses of SessionEventListener in org.hibernate.engine.spi
Subinterfaces of SessionEventListener in org.hibernate.engine.spiMethods in org.hibernate.engine.spi with parameters of type SessionEventListenerModifier and TypeMethodDescriptionvoidSessionDelegatorBaseImpl.addEventListeners(SessionEventListener... listeners) voidSessionLazyDelegator.addEventListeners(SessionEventListener... listeners) voidSessionEventListenerManager.addListener(SessionEventListener... listeners) AbstractDelegatingSessionBuilder.eventListeners(SessionEventListener... listeners) AbstractDelegatingSharedSessionBuilder.eventListeners(SessionEventListener... listeners) -
Uses of SessionEventListener in org.hibernate.internal
Methods in org.hibernate.internal that return SessionEventListenerModifier and TypeMethodDescriptionBaselineSessionEventsListenerBuilder.buildBaseline()Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.hibernate.internal that return types with arguments of type SessionEventListenerModifier and TypeMethodDescriptionBaselineSessionEventsListenerBuilder.buildBaselineList()Deprecated, for removal: This API element is subject to removal in a future version.Class<? extends SessionEventListener>BaselineSessionEventsListenerBuilder.getAutoListener()Deprecated, for removal: This API element is subject to removal in a future version.SessionCreationOptions.getCustomSessionEventListener()SessionFactoryImpl.SessionBuilderImpl.getCustomSessionEventListener()SessionFactoryImpl.StatelessSessionBuilderImpl.getCustomSessionEventListener()Methods in org.hibernate.internal with parameters of type SessionEventListenerModifier and TypeMethodDescriptionvoidSessionImpl.addEventListeners(SessionEventListener... listeners) SessionFactoryImpl.SessionBuilderImpl.eventListeners(SessionEventListener... listeners) Constructors in org.hibernate.internal with parameters of type SessionEventListenerModifierConstructorDescriptionContextualJdbcConnectionAccess(Object tenantIdentifier, SessionEventListener listener, MultiTenantConnectionProvider<Object> connectionProvider, SharedSessionContractImplementor session) NonContextualJdbcConnectionAccess(SessionEventListener listener, ConnectionProvider connectionProvider, SharedSessionContractImplementor session) Constructor parameters in org.hibernate.internal with type arguments of type SessionEventListenerModifierConstructorDescriptionBaselineSessionEventsListenerBuilder(Class<? extends SessionEventListener> autoListener) Deprecated, for removal: This API element is subject to removal in a future version.
SessionEventListenerdirectly.