Uses of Interface
org.objectweb.jotm.core.conflict.Locker

Packages that use Locker
org.objectweb.jotm.core.conflict Specifies JOTM 2 conflict management API 
org.objectweb.jotm.impl.core.conflict Provides some implementations of the org.objectweb.jotm.core.conflict interfaces 
org.objectweb.jotm.impl.core.transaction Provides some implementations of the org.objectweb.jotm.core.transaction interfaces 
 

Uses of Locker in org.objectweb.jotm.core.conflict
 

Methods in org.objectweb.jotm.core.conflict with parameters of type Locker
 java.lang.String Lock.acquire(Locker locker, java.lang.String mode)
          Acquires lock.
 boolean Lock.isAcquired(Locker locker, java.lang.String mode)
          Tests if a lock of the given mode has been acquired by the given locker.
 boolean Lock.isAcquired(Locker locker)
          Tests if a lock has been acquired by the given locker.
 java.lang.String Lock.checkAcquire(Locker locker, java.lang.String mode)
          Check whether lock can be acquired.
 void Lock.release(Locker locker)
          Releases lock.
 

Uses of Locker in org.objectweb.jotm.impl.core.conflict
 

Methods in org.objectweb.jotm.impl.core.conflict with parameters of type Locker
 java.lang.String BasicLock.acquire(Locker locker, java.lang.String mode)
           
 boolean BasicLock.isAcquired(Locker locker, java.lang.String mode)
           
 boolean BasicLock.isAcquired(Locker locker)
           
 java.lang.String BasicLock.checkAcquire(Locker locker, java.lang.String mode)
           
 void BasicLock.release(Locker locker)
           
 

Uses of Locker in org.objectweb.jotm.impl.core.transaction
 

Classes in org.objectweb.jotm.impl.core.transaction that implement Locker
 class CoreTransaction
          CoreTransaction is an implementation of a simple transaction with two phase commit.