Package com.github.dreamhead.moco.runner

Examples of com.github.dreamhead.moco.runner.RunnerFactory


    private Logger logger = LoggerFactory.getLogger(StartTask.class);
    private final StartArgsParser startArgsParser;
    protected final RunnerFactory factory;

    public StartTask(final String shutdownKey) {
        this.factory = new RunnerFactory(shutdownKey);
        this.startArgsParser = new HttpArgsParser();
    }
View Full Code Here


        this.startArgsParser = new HttpArgsParser();
    }

    protected StartTask(final String shutdownKey, final StartArgsParser startArgsParser) {
        this.startArgsParser = startArgsParser;
        this.factory = new RunnerFactory(shutdownKey);
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.runner.RunnerFactory

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.