Skip to content

Instantly share code, notes, and snippets.

@xdom
Created October 15, 2016 19:42
Show Gist options
  • Save xdom/3b5e30dafc5da4b4f2f6872ae545e6a3 to your computer and use it in GitHub Desktop.
Save xdom/3b5e30dafc5da4b4f2f6872ae545e6a3 to your computer and use it in GitHub Desktop.
@Override
public void revoke(String lockId) throws RemoteException {
revokes.add(lockId);
if (locks.containsKey(lockId) && locks.get(lockId).getState() == LockState.FREE) {
release(lockId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment