Package lumis.portal.transaction

The portal transaction framework.

See: Description

Package lumis.portal.transaction Description

The portal transaction framework. Provides and manages transactions for persistence access.

The PortalTransactionFactory provides methods for obtaining ITransaction instances. Use PortalTransactionFactory.createTransaction(boolean) for creating new transactions. The boolean parameter indicates if the created transaction will be associated with the current thread as the current active transaction. The current active transaction in a thread is returned by PortalTransactionFactory.getCurrentTransaction().

The the current transaction management is done by a stack associated with the current thread. When an active transaction ends (by executing its dispose method), the previously active transaction (next transaction in the stack) becomes the current transaction for the thread.

The recommended code pattern for creating a new transaction is the following:

 ITransaction transaction = PortalTransactionFactory.createTransaction(); // create transaction object
 try
 {
        transaction.begin();
 
        // execute transactional operations
 
        transaction.commit();
 }
 finally
 {
        transaction.dispose(); // automatically rolls back if commit was not executed
 }
 

Since:
4.2.0
Version:
$Revision: 9601 $ $Date: 2008-07-18 15:38:17 -0300 (Fri, 18 Jul 2008) $

Lumisportal  7.1.1.140331 - Copyright © 2006–2014 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.