Show ProgressRemote.java syntax highlighted
package net.sourceforge.cruisecontrol.distributed.core;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* Allow progress updates from distributed agents.
* @author Dan Rollo
* Date: Jul 25, 2007
* Time: 10:18:04 PM
*/
public interface ProgressRemote extends Remote {
/**
* @param value new progress value.
* @throws java.rmi.RemoteException if a remote call fails
*/
public void setValueRemote(String value) throws RemoteException;
/**
* @return current progress value.
* @throws RemoteException if a remote call fails
*/
public String getValueRemote() throws RemoteException;
}
See more files for this project here