Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.ematgine.utils.concurrent
Class FIFOReadWriteLock.ReaderSync  view FIFOReadWriteLock.ReaderSync download FIFOReadWriteLock.ReaderSync.java

java.lang.Object
  extended byorg.ematgine.utils.concurrent.FIFOReadWriteLock.ReaderSync
All Implemented Interfaces:
Sync
Enclosing class:
FIFOReadWriteLock

class FIFOReadWriteLock.ReaderSync
extends java.lang.Object
implements Sync


Field Summary
protected  Mutex oneWaiter_
           
protected  int readers_
           
 
Fields inherited from interface org.ematgine.utils.concurrent.Sync
ONE_CENTURY, ONE_DAY, ONE_HOUR, ONE_MINUTE, ONE_SECOND, ONE_WEEK, ONE_YEAR
 
Constructor Summary
(package private) FIFOReadWriteLock.ReaderSync()
           
 
Method Summary
 void acquire()
          Wait (possibly forever) until successful passage.
 boolean attempt(long msecs)
          Wait at most msecs to pass; report whether passed.
protected  void incReaders()
           
 void release()
          Potentially enable others to pass.
protected  boolean tryRead(long msecs)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

readers_

protected int readers_

oneWaiter_

protected Mutex oneWaiter_
Constructor Detail

FIFOReadWriteLock.ReaderSync

FIFOReadWriteLock.ReaderSync()
Method Detail

incReaders

protected void incReaders()
                   throws java.lang.InterruptedException

tryRead

protected boolean tryRead(long msecs)
                   throws java.lang.InterruptedException

acquire

public void acquire()
             throws java.lang.InterruptedException
Description copied from interface: Sync
Wait (possibly forever) until successful passage. Fail only upon interuption. Interruptions always result in `clean' failures. On failure, you can be sure that it has not been acquired, and that no corresponding release should be performed. Conversely, a normal return guarantees that the acquire was successful.

Specified by:
acquire in interface Sync

release

public void release()
Description copied from interface: Sync
Potentially enable others to pass.

Because release does not raise exceptions, it can be used in `finally' clauses without requiring extra embedded try/catch blocks. But keep in mind that as with any java method, implementations may still throw unchecked exceptions such as Error or NullPointerException when faced with uncontinuable errors. However, these should normally only be caught by higher-level error handlers.

Specified by:
release in interface Sync

attempt

public boolean attempt(long msecs)
                throws java.lang.InterruptedException
Description copied from interface: Sync
Wait at most msecs to pass; report whether passed.

The method has best-effort semantics: The msecs bound cannot be guaranteed to be a precise upper bound on wait time in Java. Implementations generally can only attempt to return as soon as possible after the specified bound. Also, timers in Java do not stop during garbage collection, so timeouts can occur just because a GC intervened. So, msecs arguments should be used in a coarse-grained manner. Further, implementations cannot always guarantee that this method will return at all without blocking indefinitely when used in unintended ways. For example, deadlocks may be encountered when called in an unintended context.

Specified by:
attempt in interface Sync