Package org.apache.jmeter.util

Examples of org.apache.jmeter.util.BeanShellServer


  private void startBSH() {
    int bshport = JMeterUtils.getPropDefault("beanshell.server.port", 0);
    String bshfile = JMeterUtils.getPropDefault("beanshell.server.file", "");
    if (bshport > 0) {
      log.info("Starting Beanshell server (" + bshport + "," + bshfile + ")");
      Runnable t = new BeanShellServer(bshport, bshfile);
      t.run();
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.jmeter.util.BeanShellServer

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.