Code Search for Developers
 
 
  

MainLoopRunner.java from cruisecontrol at Krugle


Show MainLoopRunner.java syntax highlighted

package net.sourceforge.cruisecontrol.servlet;

import net.sourceforge.cruisecontrol.Main;

public class MainLoopRunner implements Runnable {

    private Integer jmxport;
    private Integer rmiport;
    private Main main;

    public MainLoopRunner(Integer jmxport, Integer rmiport) {
        this.jmxport = jmxport;
        this.rmiport = rmiport;
    }

    public void run() {
        String[] args = {"-jmxport", jmxport.toString(), "-rmiport", rmiport.toString()};
        main = new Main();
        main.start(args);
    }

    public void stop() {
        main.stop();
    }

}




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

  MainLoopLauncher.java
  MainLoopRunner.java