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

com.orientechnologies.common.concur.lock.OSimpleRWLockManager Maven / Gradle / Ivy

There is a newer version: 3.2.32
Show newest version
package com.orientechnologies.common.concur.lock;

public interface OSimpleRWLockManager {

  void acquireReadLock(T key, long timeout);

  void acquireWriteLock(T key, long timeout);

  void releaseReadLock(T key);

  void releaseWriteLock(T key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy