Package com.wavefront.agent
Interface PointHandler
-
- All Known Implementing Classes:
PointHandlerImpl
@Deprecated public interface PointHandler
Deprecated.Interface for a handler of Report Points.- Author:
- Clement Pang ([email protected]).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
handleBlockedPoint(String pointLine)
Deprecated.Called when a blocked line is encountered.void
reportPoint(wavefront.report.ReportPoint point, String debugLine)
Deprecated.Send a point for reporting.void
reportPoints(List<wavefront.report.ReportPoint> points)
Deprecated.Send a collection of points for reporting.
-
-
-
Method Detail
-
reportPoint
void reportPoint(wavefront.report.ReportPoint point, @Nullable String debugLine)
Deprecated.Send a point for reporting.- Parameters:
point
- Point to report.debugLine
- Debug information to print to console when the line is rejected. If null, then use the entire point converted to string.
-
reportPoints
void reportPoints(List<wavefront.report.ReportPoint> points)
Deprecated.Send a collection of points for reporting.- Parameters:
points
- Points to report.
-
-