|
GigaSpaces XAP 9.7.2 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sun.jini.thread.ReadersWriter
public class ReadersWriter
An Object to control the concurrent state. Allows multiple readers or a single writer. Waiting writers have priority over new readers. Waiting priority writers have priority over waiting regular writers. A single thread cannot hold a lock more than once.
Nested Class Summary | |
---|---|
static class |
ReadersWriter.ConcurrentLockException
InterruptedException transformed to a runtime exception. |
Constructor Summary | |
---|---|
ReadersWriter()
|
Method Summary | |
---|---|
void |
priorityWriteLock()
Obtain a priority write lock. |
void |
readerWait(Object notifier,
long time)
Release a read lock, wait the given period of time or until notified by notifier, then obtain a read lock again. |
void |
readLock()
Obtain a read lock. |
void |
readUnlock()
Release a read lock. |
void |
waiterNotify(Object notifier)
Wake up any threads waiting on this notifier. |
void |
writeLock()
Obtain a regular write lock. |
void |
writerWait(Object notifier,
long time)
Release a write lock, wait the given period of time or until notified by notifier, then obtain a regular write lock again. |
void |
writeUnlock()
Release a (regular or priority) write lock. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ReadersWriter()
Method Detail |
---|
public void readLock()
public void readUnlock()
public void writeLock()
public void priorityWriteLock()
public void writeUnlock()
public void readerWait(Object notifier, long time)
public void writerWait(Object notifier, long time)
public void waiterNotify(Object notifier)
|
GigaSpaces XAP 9.7.2 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |