Uses of Interface
org.hibernate.jdbc.Work
-
Packages that use Work 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.dialect.temptable Support for temporary tables.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
.org.hibernate.jdbc Defines the notion of a unit of JDBC work that may be executed by the session at the request of the client.org.hibernate.testing.junit4 -
-
Uses of Work in org.hibernate
Methods in org.hibernate with parameters of type Work Modifier and Type Method Description default void
SharedSessionContract. doWork(Work work)
Perform work using theConnection
underlying by this session. -
Uses of Work in org.hibernate.dialect.temptable
Classes in org.hibernate.dialect.temptable that implement Work Modifier and Type Class Description static class
TemporaryTableHelper.TemporaryTableCreationWork
static class
TemporaryTableHelper.TemporaryTableDropWork
-
Uses of Work in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type Work Modifier and Type Method Description void
SessionDelegatorBaseImpl. doWork(Work work)
void
SessionLazyDelegator. doWork(Work work)
void
SharedSessionDelegatorBaseImpl. doWork(Work work)
-
Uses of Work in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type Work Modifier and Type Method Description void
AbstractSharedSessionContract. doWork(Work work)
-
Uses of Work in org.hibernate.jdbc
Classes in org.hibernate.jdbc that implement Work Modifier and Type Class Description class
AbstractWork
An abstract implementation ofWork
that accepts aWorkExecutor
visitor for executing a discrete piece of work.Methods in org.hibernate.jdbc with parameters of type Work Modifier and Type Method Description @Nullable T
WorkExecutor. executeWork(Work work, Connection connection)
Execute the discrete work encapsulated by aWork
instance using the supplied connection. -
Uses of Work in org.hibernate.testing.junit4
Classes in org.hibernate.testing.junit4 that implement Work Modifier and Type Class Description static class
BaseCoreFunctionalTestCase.RollbackWork
static class
BaseNonConfigCoreFunctionalTestCase.RollbackWork
-