org.apache.jmeter.reporters
public class: ResultSaver [javadoc |
source]
java.lang.Object
org.apache.jmeter.testelement.AbstractTestElement
org.apache.jmeter.reporters.ResultSaver
All Implemented Interfaces:
SampleListener, Serializable, TestElement
Save Result responseData to a set of files
This is mainly intended for validation tests
Field Summary |
---|
public static final String | FILENAME | |
public static final String | VARIABLE_NAME | |
public static final String | ERRORS_ONLY | |
public static final String | SUCCESS_ONLY | |
public static final String | SKIP_AUTO_NUMBER | |
public static final String | SKIP_SUFFIX | |
Methods from org.apache.jmeter.testelement.AbstractTestElement: |
---|
addProperty, addTestElement, canRemove, clear, clearTemporary, clone, emptyTemporary, equals, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsLong, getPropertyAsString, getThreadContext, getThreadName, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, nextIsNull, propertyIterator, recoverRunningVersion, removeProperty, setName, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, threadFinished, threadStarted, traverse, traverseCollection, traverseMap, traverseProperty |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.jmeter.reporters.ResultSaver Detail: |
public void clear() {
super.clear();
synchronized(this){
sequenceNumber = 0; // TODO is this the right thing to do?
}
}
|
public void sampleOccurred(SampleEvent e) {
processSample(e.getResult(), new Counter());
}
Saves the sample result (and any sub results) in files |
public void sampleStarted(SampleEvent e) {
// not used
}
|
public void sampleStopped(SampleEvent e) {
// not used
}
|