|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.ojb.odmg.TransactionImpl
Implementation of Transaction for org.odmg.Transaction.
| Field Summary |
| Fields inherited from interface org.odmg.Transaction |
READ, UPGRADE, WRITE |
| Constructor Summary | |
TransactionImpl(DatabaseImpl theCurrentDB)
Creates new Transaction |
|
| Method Summary | |
void |
abort()
Abort and close the transaction. |
void |
afterMaterialization(org.apache.ojb.broker.accesslayer.IndirectionHandler handler,
java.lang.Object materializedObject)
this callback is invoked after an Object is materialized within an IndirectionHandler. |
void |
beforeMaterialization(org.apache.ojb.broker.accesslayer.IndirectionHandler handler,
Identity oid)
this callback is invoked before an Object is materialized within an IndirectionHandler. |
void |
begin()
Start a transaction. |
void |
checkpoint()
Commit the transaction, but reopen the transaction, retaining all locks. |
void |
commit()
Commit and close the transaction. |
void |
configure(org.apache.ojb.broker.util.configuration.Configuration config)
|
void |
flush()
Calling flush flushes persistent object modifications
made within the ODMG transaction since the last checkpoint to the underlying
database transaction, but does commit the database transaction. |
DatabaseImpl |
getAssociatedDatabase()
Returns the associated database |
PersistenceBroker |
getBroker()
Gets the broker associated with the transaction. |
java.lang.String |
getGUID()
|
java.lang.Object |
getObjectByIdentity(Identity id)
Get object by identity. |
boolean |
isDeleted(Identity id)
Checks if the object with the given identity has been deleted within the transaction. |
boolean |
isOpen()
Determine whether the transaction is open or not. |
void |
join()
Attach the caller's thread to this Transaction and detach the
thread from any former Transaction the thread may have been
associated with. |
void |
leave()
Detach the caller's thread from this Transaction , but do not
attach the thread to another Transaction . |
void |
lock(java.lang.Object obj,
int lockMode)
Upgrade the lock on the given object to the given lock mode. |
void |
markDelete(java.lang.Object anObject)
marks an object for deletion without locking the object. |
void |
markDirty(java.lang.Object anObject)
marks an object as dirty without locking the object. |
void |
setImplicitLocking(boolean value)
This method can be used to activate or deactivate the implicit locking mechanism for the current transaction. |
boolean |
tryLock(java.lang.Object obj,
int lockMode)
Upgrade the lock on the given object to the given lock mode. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public TransactionImpl(DatabaseImpl theCurrentDB)
theCurrentDB - - create a transaction that is associated with the database.| Method Detail |
public DatabaseImpl getAssociatedDatabase()
public boolean isOpen()
begin , but a subsequent call to
either commit or abort has not been made.
isOpen in interface Transactionpublic void join()
Transaction and detach the
thread from any former Transaction the thread may have been
associated with.
join in interface Transaction
public void lock(java.lang.Object obj,
int lockMode)
throws LockNotGrantedException
lock in interface Transactionobj - object to acquire a lock on.lockMode - lock mode to acquire. The lock modes
are READ , UPGRADE , and WRITE .
LockNotGrantedException - Description of Exceptionpublic void leave()
Transaction , but do not
attach the thread to another Transaction .
leave in interface Transactionpublic void checkpoint()
checkpoint commits persistent object modifications
made within the transaction since the last checkpoint to the database. The
transaction retains all locks it held on those objects at the time the
checkpoint was invoked.
checkpoint in interface Transactionpublic void flush()
TransactionExt
Calling flush flushes persistent object modifications
made within the ODMG transaction since the last checkpoint to the underlying
database transaction, but does commit the database transaction.
The ODMG transaction retains all locks it held on those objects at the time the flush
was invoked.
Transaction.checkpoint().
flush in interface TransactionExtTransactionExt.flush()public void markDelete(java.lang.Object anObject)
TransactionExt
markDelete in interface TransactionExtanObject - Object to be markedTransactionExt.markDelete(java.lang.Object)public void markDirty(java.lang.Object anObject)
TransactionExt
markDirty in interface TransactionExtanObject - Object to be markedTransactionExt.markDirty(java.lang.Object)
public boolean tryLock(java.lang.Object obj,
int lockMode)
tryLock is the same as lock except it returns a boolean
indicating whether the lock was granted instead of generating an exception.
tryLock in interface Transactionobj - Description of ParameterlockMode - Description of Parameter
UPGRADE , and WRITE .public void commit()
commit commits to
the database all persistent object modifications within the transaction and
releases any locks held by the transaction. A persistent object
modification is an update of any field of an existing persistent object, or
an update or creation of a new named object in the database. If a
persistent object modification results in a reference from an existing
persistent object to a transient object, the transient object is moved to
the database, and all references to it updated accordingly. Note that the
act of moving a transient object to the database may create still more
persistent references to transient objects, so its referents must be
examined and moved as well. This process continues until the database
contains no references to transient objects, a condition that is guaranteed
as part of transaction commit. Committing a transaction does not remove
from memory transient objects created during the transaction.
The updateObjectList contains a list of all objects for which this transaction
has write privledge to. We need to update these objects.
commit in interface Transactionpublic void abort()
abort in interface Transactionpublic void begin()
begin multiple times on the same
transaction object, without an intervening call to commit or
abort , causes the exception
TransactionInProgressException to be thrown on the second and
subsequent calls. Operations executed before a transaction has been opened,
or before reopening after a transaction is aborted or committed, have
undefined results; these may throw a
TransactionNotInProgressException exception.
begin in interface Transactionpublic java.lang.String getGUID()
public java.lang.Object getObjectByIdentity(Identity id)
throws PersistenceBrokerException
id - The identity
PersistenceBrokerExceptionpublic boolean isDeleted(Identity id)
id - The identity
PersistenceBrokerException
public void beforeMaterialization(org.apache.ojb.broker.accesslayer.IndirectionHandler handler,
Identity oid)
beforeMaterialization in interface org.apache.ojb.broker.accesslayer.MaterializationListenerhandler - the invoking handleroid - the identity of the object to be materialized
public void afterMaterialization(org.apache.ojb.broker.accesslayer.IndirectionHandler handler,
java.lang.Object materializedObject)
afterMaterialization in interface org.apache.ojb.broker.accesslayer.MaterializationListenerhandler - the invoking handlermaterializedObject - the materialized Objectpublic PersistenceBroker getBroker()
getBroker in interface HasBrokerTransactionNotInProgressException - is the transaction is not open;
public void configure(org.apache.ojb.broker.util.configuration.Configuration config)
throws org.apache.ojb.broker.util.configuration.ConfigurationException
configure in interface org.apache.ojb.broker.util.configuration.Configurableorg.apache.ojb.broker.util.configuration.ConfigurationExceptionpublic void setImplicitLocking(boolean value)
TransactionExt
setImplicitLocking in interface TransactionExtvalue - if set to true implicit locking is enabled,
if false, implicit locking is disabled.TransactionExt.setImplicitLocking(boolean)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||