1 18 19 package org.apache.jmeter.visualizers; 20 21 22 import java.io.Serializable ; 23 24 25 29 30 public class Sample implements Serializable  31 { 32 public long data; 33 public long average; 34 public long median; 35 public long deviation; 36 public float throughput; 37 public boolean error = false; 38 39 46 public Sample( 47 long data, 48 long average, 49 long deviation, 50 float throughput, 51 long median, 52 boolean error) 53 { 54 this.data = data; 55 this.average = average; 56 this.deviation = deviation; 57 this.throughput = throughput; 58 this.error = error; 59 this.median = median; 60 } 61 62 public Sample() 63 {} 64 } 65 | Popular Tags |