Package com.opensymphony.async.model

Examples of com.opensymphony.async.model.Experiment


    public void setNumRuns(int numRuns) {
        this.numRuns = numRuns;
    }

    public String execute() throws Exception {
        experiment = new Experiment();
        for (int i = 0; i < numRuns; i++) {
            Thread.sleep(1000);
            Run run = new Run();
            experiment.addRun(run);
        }
View Full Code Here

TOP

Related Classes of com.opensymphony.async.model.Experiment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.