Uses of Class
org.hibernate.jdbc.WorkExecutor
-
Packages that use WorkExecutor Package Description 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 WorkExecutor in org.hibernate.jdbc
Methods in org.hibernate.jdbc with parameters of type WorkExecutor Modifier and Type Method Description T
AbstractReturningWork. accept(WorkExecutor<T> executor, Connection connection)
Accepts aWorkExecutor
visitor for executing the discrete work encapsulated by this work instance using the supplied connection.Void
AbstractWork. accept(WorkExecutor<Void> executor, Connection connection)
Accepts aWorkExecutor
visitor for executing the discrete work encapsulated by this work instance using the supplied connection.T
WorkExecutorVisitable. accept(WorkExecutor<T> executor, Connection connection)
Accepts aWorkExecutor
visitor for executing a discrete piece of work, and returns an implementation-defined result..
-