Package com.antiaction.critical

Semaphore classes to help manage critical regions.

See:
          Description

Class Summary
Multex Basic counter semaphore, allows for controlled multithreaded access to data.
Mutex Mutex semaphore, restricts access to one thread at a time.
RWLock RWLock implements simultanious reads and exclusive writes.
 

Package com.antiaction.critical Description

Semaphore classes to help manage critical regions. These classes have been implemented to be as robust as possible. Needless to say these classes will only be of use where multithreading is involved.