FileDocCategorySizeDatePackage
RemoteLockHolder.javaAPI DocExample370Sat Feb 01 07:12:40 GMT 1997imaginary.persist

RemoteLockHolder.java

/**
 * The remote interface for client lock holders.
 */
package imaginary.persist;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface RemoteLockHolder extends Remote {
    public abstract void monitorLock(RemotePersistent p)
    throws RemoteException;

    public abstract void setLock(RemoteLock lock) throws RemoteException;
}