All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.javagimmicks.concurrent.locks.LockRegistry Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
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