Package com.lazerycode.jmeter.configuration

Examples of com.lazerycode.jmeter.configuration.JMeterProcessJVMSettings


  private List<String> userSuppliedArguments;
  private List<String> mainClassArguments = new ArrayList<String>();

  public JMeterProcessBuilder(JMeterProcessJVMSettings settings) {
    if (null == settings) {
      settings = new JMeterProcessJVMSettings();
    }
    this.initialHeapSizeInMegaBytes = settings.getXms();
    this.maximumHeapSizeInMegaBytes = settings.getXmx();
    this.userSuppliedArguments = settings.getArguments();
    this.javaRuntime = settings.getJavaRuntime();
View Full Code Here

TOP

Related Classes of com.lazerycode.jmeter.configuration.JMeterProcessJVMSettings

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.