Lars-Erik Helander provided the idea (and original implementation) for the
caching functionality (sampleStore).
Method from org.apache.jmeter.samplers.RemoteListenerWrapper Detail: |
public void sampleOccurred(SampleEvent e) {
sender.sampleOccurred(e);
}
|
public void sampleStarted(SampleEvent e) {
log.debug("Sample started");
try {
listener.sampleStarted(e);
} catch (RemoteException err) {
log.error("sampleStarted", err);
}
}
|
public void sampleStopped(SampleEvent e) {
log.debug("Sample stopped");
try {
listener.sampleStopped(e);
} catch (RemoteException err) {
log.error("sampleStopped", err);
}
}
|
public void testEnded() {
sender.testEnded();
}
|
public void testEnded(String host) {
sender.testEnded(host);
}
|
public void testIterationStart(LoopIterationEvent event) {
}
|
public void testStarted() {
log.info("Test Started()");
try {
listener.testStarted();
} catch (Throwable ex) {
log.warn("testStarted()", ex);
}
}
|
public void testStarted(String host) {
log.info("Test Started on " + host); // should this be debug?
try {
listener.testStarted(host);
} catch (Throwable ex) {
log.error("testStarted(host)", ex);
}
}
|