org.apache.jmeter.visualizers
Interface Visualizer
- DataSet
- AbstractVisualizer, AssertionVisualizer, BeanShellListener, BSFListener, DistributionGraphVisualizer, GraphAccumVisualizer, GraphVisualizer, JTLData, MailerVisualizer, MonitorHealthVisualizer, SimpleDataWriter, SplineVisualizer, StatGraphVisualizer, StatVisualizer, SummaryReport, TableVisualizer, ViewResultsFullVisualizer
public interface Visualizer
Implement this method to be a Visualizer for JMeter. This interface defines a
single method, "add()", that provides the means by which
SampleResults
are passed to
the implementing visualizer for display/logging. The easiest way to create
the visualizer is to extend the
AbstractVisualizer
class.
void | add(SampleResult sample) - This method is called by sampling thread to inform the visualizer about
the arrival of a new sample.
|
boolean | isStats() - This method is used to indicate a visualizer generates statistics.
|
add
public void add(SampleResult sample)
This method is called by sampling thread to inform the visualizer about
the arrival of a new sample.
isStats
public boolean isStats()
This method is used to indicate a visualizer generates statistics.
- true if visualiser generates statistics
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.