1 18 19 package org.apache.jmeter.samplers; 20 21 import java.io.Serializable ; 22 23 30 public class SampleEvent implements Serializable  31 { 32 SampleResult result; 33 String threadGroup; 34 35 public SampleEvent() 36 { 37 } 38 39 public SampleEvent(SampleResult result, String threadGroup) 40 { 41 this.result = result; 42 this.threadGroup = threadGroup; 43 } 44 45 public SampleResult getResult() 46 { 47 return result; 48 } 49 50 public String getThreadGroup() 51 { 52 return threadGroup; 53 } 54 } 55 | Popular Tags |