Package net.grinder

Examples of net.grinder.AgentControllerServerDaemon


   * Initialize agent manager.
   */
  @PostConstruct
  public void init() {
    int port = config.getControllerPort();
    agentControllerServerDaemon = new AgentControllerServerDaemon(config.getCurrentIP(), port);
    agentControllerServerDaemon.start();
    agentControllerServerDaemon.setAgentDownloadRequestListener(this);
    agentControllerServerDaemon.addLogArrivedListener(new LogArrivedListener() {
      @Override
      public void logArrived(String testId, AgentAddress agentAddress, byte[] logs) {
View Full Code Here

TOP

Related Classes of net.grinder.AgentControllerServerDaemon

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.