1 27 package org.objectweb.transaction.api.lock; 28 29 37 public interface ExclusiveLockFeature 38 extends ReleaseLockFeature 39 { 40 43 public static final String EXCLUSIVE_LOCK_FEATURE = "exclusive-lock-feature"; 44 45 50 public void acquire(LockIdentifier id); 51 52 58 public boolean tryAcquire(LockIdentifier id); 59 60 65 public boolean isAcquired(LockIdentifier id); 66 } 67 | Popular Tags |