Code Search for Developers
 
 
  

ProgressRemote.java from cruisecontrol at Krugle


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

cruisecontrol

CruiseControl is a framework for a continuous build process. It includes, but is not limited to, plugins for email notification, Ant, and various source control tools. A web interface is provided to view the details of the current and previous builds.

Project homepage: http://sourceforge.net/projects/cruisecontrol
Programming language(s): Java,XML
License: other

  CCDistVersion.java
  FileUtil.java
  MulticastDiscovery.java
  PreferencesHelper.java
  ProgressRemote.java
  ProgressRemoteImpl.java
  PropertiesHelper.java
  ReggieUtil.java
  ZipUtil.java