blob: f9b47d06ecf4ce3fe2b58985d14e26fc52e35d91 [file] [log] [blame]
package org.apache.yoko.orb.util;
import java.util.concurrent.locks.ReentrantReadWriteLock;
public class AutoReadWriteLock {
private final ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
public AutoLock getReadLock() {
return new AutoLock(lock.readLock());
}
public AutoLock getWriteLock() {
return new AutoLock(lock.writeLock(), lock.readLock(), lock.getReadHoldCount());
}
}