Package com.adahas.tools.jmxeval.model.impl

Examples of com.adahas.tools.jmxeval.model.impl.JMXEval.process()


      // build the config element
      final ElementBuilder elementBuilder = getElementBuilderInstance();
      final JMXEval jmxEval = (JMXEval) elementBuilder.build(context);
   
      // process the evals
      jmxEval.process(context);

      // set elapsed time in seconds
      final double elapsedTime = (System.currentTimeMillis() - startTime) / 1000;
      context.getResponse().addPerfData(new PerfDataResult(
          "time", String.valueOf(elapsedTime), "s", null, null, null, null));
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.