Package net.grinder.engine.communication

Examples of net.grinder.engine.communication.AgentControllerServerListener


  public AgentController(Condition eventSyncCondition, AgentConfig agentConfig) throws GrinderException {
    this.m_eventSyncCondition = eventSyncCondition;

    this.agentConfig = agentConfig;
    this.version = agentConfig.getInternalProperties().getProperty(PROP_INTERNAL_NGRINDER_VERSION);
    this.m_agentControllerServerListener = new AgentControllerServerListener(m_eventSynchronisation, LOGGER);
    // Set it with the default name
    this.m_agentIdentity = new AgentControllerIdentityImplementation(agentConfig.getAgentHostID(), NetworkUtils.DEFAULT_LOCAL_HOST_ADDRESS);
    this.m_agentIdentity.setRegion(agentConfig.getRegion());
    this.agentSystemDataCollector = new SystemDataCollector();
    this.agentSystemDataCollector.setAgentHome(agentConfig.getHome().getDirectory());
View Full Code Here

TOP

Related Classes of net.grinder.engine.communication.AgentControllerServerListener

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.