Package kieker.common.registry
Interface IMonitoringRecordReceiver
- All Known Subinterfaces:
IMonitoringController
,IWriterController
- All Known Implementing Classes:
MonitoringController
,WriterController
public interface IMonitoringRecordReceiver
- Since:
- 1.5
- Author:
- Andre van Hoorn
-
Method Summary
Modifier and Type Method Description boolean
newMonitoringRecord(IMonitoringRecord record)
Called for each new record.
-
Method Details
-
newMonitoringRecord
Called for each new record. Notice, that this method should not throw an exception, but indicate an error by the return value false.- Parameters:
record
- the record.- Returns:
- true on success; false in case of an error.
- Since:
- 1.5
-