Skip to content

Instantly share code, notes, and snippets.

@xdom
Created September 25, 2016 19:42
Show Gist options
  • Save xdom/ea761b9dd69075aae5648a136bd404c0 to your computer and use it in GitHub Desktop.
Save xdom/ea761b9dd69075aae5648a136bd404c0 to your computer and use it in GitHub Desktop.
@Override
public boolean acquire(String lockId, String ownerId, long sequence) throws RemoteException {
Lock lock = locks.computeIfAbsent(lockId, l -> new ReentrantLock());
lock.lock();
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment