org.hibernate.engine.transaction
Class Isolater

java.lang.Object
  extended by org.hibernate.engine.transaction.Isolater

public class Isolater
extends Object

Class which provides the isolation semantics required by an IsolatedWork. Processing comes in two flavors:

Author:
Steve Ebersole

Nested Class Summary
static class Isolater.JdbcDelegate
          An isolation delegate for JDBC-based transactions.
static class Isolater.JtaDelegate
          An isolation delegate for JTA-based transactions.
 
Constructor Summary
Isolater()
           
 
Method Summary
static void doIsolatedWork(IsolatedWork work, SessionImplementor session)
          Ensures that all processing actually performed by the given work will occur on a seperate transaction.
static void doNonTransactedWork(IsolatedWork work, SessionImplementor session)
          Ensures that all processing actually performed by the given work will occur outside of a transaction.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Isolater

public Isolater()
Method Detail

doIsolatedWork

public static void doIsolatedWork(IsolatedWork work,
                                  SessionImplementor session)
                           throws HibernateException
Ensures that all processing actually performed by the given work will occur on a seperate transaction.

Parameters:
work - The work to be performed.
session - The session from which this request is originating.
Throws:
HibernateException

doNonTransactedWork

public static void doNonTransactedWork(IsolatedWork work,
                                       SessionImplementor session)
                                throws HibernateException
Ensures that all processing actually performed by the given work will occur outside of a transaction.

Parameters:
work - The work to be performed.
session - The session from which this request is originating.
Throws:
HibernateException


Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.