net.sf.javagimmicks.concurrent.locks.LockRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.concurrent.locks;
import java.util.Collection;
interface LockRegistry
{
boolean isSharedFree(Collection resources);
void registerShared(Collection resources);
void unregisterShared(Collection resources);
boolean isExclusiveFree(Collection resources);
void registerExclusive(Collection resources);
void unregisterExclusive(Collection resources);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy