1 17 18 package org.apache.jmeter.monitor.model; 19 20 23 public interface RequestInfo 24 { 25 long getBytesReceived(); 26 27 void setBytesReceived(long value); 28 29 long getBytesSent(); 30 31 void setBytesSent(long value); 32 33 long getRequestCount(); 34 35 void setRequestCount(long value); 36 37 long getErrorCount(); 38 39 void setErrorCount(long value); 40 41 int getMaxTime(); 42 43 void setMaxTime(int value); 44 45 int getProcessingTime(); 46 47 void setProcessingTime(int value); 48 49 } 50 | Popular Tags |