Package net.grinder.engine.agent

Source Code of net.grinder.engine.agent.GSDebugProcessRunner

package net.grinder.engine.agent;

import java.io.InputStream;

import com.googlecode.grinderstone.debug.GSDebugWorkerProcessEntryPoint;

import net.grinder.engine.agent.DebugThreadWorker.IsolateGrinderProcessRunner;

/**
* @author Andruschuk Borislav
*/
public class GSDebugProcessRunner implements IsolateGrinderProcessRunner {

    /**
     * {@inheritDoc}
     */
    public int run(InputStream agentCommunicationStream) {

        return new GSDebugWorkerProcessEntryPoint().run(agentCommunicationStream);
    }

}
TOP

Related Classes of net.grinder.engine.agent.GSDebugProcessRunner

TOP
Copyright © 2018 www.massapi.com. 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.