All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lazerycode.jmeter.analyzer.statistics.ValueCount Maven / Gradle / Ivy

Go to download

Parses JMeter result files and computes performance indicators such as average request duration

There is a newer version: 1.0.6
Show newest version
package com.lazerycode.jmeter.analyzer.statistics;

/**
 * Manages the count for a long value.
 *
 * @author Peter Kaul
 */
class ValueCount {
  private long value;
  private long count;

  public ValueCount(final long value) {
    this.value = value;
  }

  public void increment() {
    count++;
  }

  public long getCount() {
    return count;
  }

  public long getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy