Package net.grinder.script

Examples of net.grinder.script.Statistics


      final Logger externalLogger = new ExternalLogger(m_logger, m_threadContexts);

      m_sleeper = new SleeperImplementation(m_times.getTimeAuthority(), externalLogger, properties.getDouble(
          "grinder.sleepTimeFactor", 1.0d), properties.getDouble("grinder.sleepTimeVariation", 0.2d));

      final Statistics scriptStatistics = new ScriptStatisticsImplementation(m_threadContexts,
          m_statisticsServices, m_consoleSender);

      final ThreadStopper threadStopper = new ThreadStopper() {
        @Override
        public boolean stopThread(final int threadNumber) {
View Full Code Here


    final Logger externalLogger = new ExternalLogger(LOGGER, m_threadContexts);

    Sleeper m_sleeper = new SleeperImplementation(m_times.getTimeAuthority(), externalLogger, 1.0d, 0.2d);

    final Statistics scriptStatistics = new ScriptStatisticsImplementation(m_threadContexts, m_statisticsServices,
        new NullSender());

    final InternalScriptContext scriptContext = new ScriptContextImplementation(new SimpleWorkerIdentity(
        "unit-test", 0), new SimpleWorkerIdentity("unit-test", 0), m_threadContexts, null,
        externalLogger, m_sleeper, new SSLControlImplementation(m_threadContexts), scriptStatistics,
View Full Code Here

TOP

Related Classes of net.grinder.script.Statistics

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.