Examples of StopGrinderMessage


Examples of net.grinder.messages.agent.StopGrinderMessage

   * @see net.grinder.console.communication.AgentProcessControl#stopAgent(net.grinder
   * .common.processidentity.AgentIdentity)
   */
  @Override
  public void stopAgent(AgentIdentity agentIdentity) {
    m_consoleCommunication.sendToAddressedAgents(new AgentAddress(agentIdentity), new StopGrinderMessage());
  }
View Full Code Here

Examples of net.grinder.messages.agent.StopGrinderMessage

   * @param agentIdentity agent controller identity
   */
  public void stopAgent(AgentIdentity agentIdentity) {
    LOGGER.info("{} agent is stopped.", agentIdentity);
    getComponent(ConsoleCommunication.class).sendToAddressedAgents(new AgentAddress(agentIdentity),
        new StopGrinderMessage());
  }
View Full Code Here
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.