Uses of Interface
org.hibernate.jdbc.ReturningWork
-
Packages that use ReturningWork 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.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 A small API allowing the client of a Hibernate session to interact directly with JDBC, using the same connection and transaction obtained by the session. -
-
Uses of ReturningWork in org.hibernate
Methods in org.hibernate with parameters of type ReturningWork Modifier and Type Method Description default <T> T
SharedSessionContract. doReturningWork(ReturningWork<T> work)
Perform work using theConnection
underlying by this session, and return a result. -
Uses of ReturningWork in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type ReturningWork Modifier and Type Method Description <T> T
SessionDelegatorBaseImpl. doReturningWork(ReturningWork<T> work)
<T> T
SessionLazyDelegator. doReturningWork(ReturningWork<T> work)
<T> T
SharedSessionDelegatorBaseImpl. doReturningWork(ReturningWork<T> work)
-
Uses of ReturningWork in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type ReturningWork Modifier and Type Method Description <T> T
AbstractSharedSessionContract. doReturningWork(ReturningWork<T> work)
-
Uses of ReturningWork in org.hibernate.jdbc
Classes in org.hibernate.jdbc that implement ReturningWork Modifier and Type Class Description class
AbstractReturningWork<T>
An abstract implementation ofReturningWork
that accepts aWorkExecutor
visitor for executing a discrete piece of work and returning a result.Methods in org.hibernate.jdbc with parameters of type ReturningWork Modifier and Type Method Description T
WorkExecutor. executeReturningWork(ReturningWork<T> work, Connection connection)
Execute the discrete work encapsulated by aReturningWork
instance using the supplied connection, returning the result ofexecute(Connection)
.
-