1 package org.jgroups.blocks; 2 3 import org.jgroups.ChannelException; 4 5 11 public interface LockManager { 12 13 33 void lock(Object obj, Object owner, int timeout) 34 throws LockNotGrantedException, ClassCastException , ChannelException; 35 36 52 void unlock(Object obj, Object owner) 53 throws LockNotReleasedException, ClassCastException , ChannelException; 54 55 56 } | Popular Tags |