FileDocCategorySizeDatePackage
RemoteLock.javaAPI DocExample314Sat Feb 01 07:11:16 GMT 1997imaginary.persist

RemoteLock.java

/**
 * This is the remote interface for Lock instances.
 * @see imaginary.persist.Lock
 */
package imaginary.persist;

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

public interface RemoteLock extends Remote {
    public abstract void save() throws PersistenceException, RemoteException;
}