
delight.concurrency.wrappers.SimpleLock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-concurrency Show documentation
Show all versions of delight-concurrency Show documentation
An abstract and lightweight definition of concurrency fundamentals.
The newest version!
package delight.concurrency.wrappers;
/**
* A simple lock implementation.
*
* @author Max
*
*/
public interface SimpleLock {
public abstract void lock();
public abstract void unlock();
public abstract boolean isHeldByCurrentThread();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy