Package kieker.common.namedRecordPipe
Interface IPipeReader
- All Known Implementing Classes:
PipeReader,PipeReader
public interface IPipeReader
This is a simple interface for a reader that works on a pipe.
- Since:
- 1.3
- Author:
- Andre van Hoorn
-
Method Summary
Modifier and Type Method Description booleannewMonitoringRecord(IMonitoringRecord record)Called for each new record.voidnotifyPipeClosed()Called to notify the reader that the pipe is closed.
-
Method Details
-
notifyPipeClosed
void notifyPipeClosed()Called to notify the reader that the pipe is closed.- Since:
- 1.3
-
newMonitoringRecord
Called for each new record.- Parameters:
record- the record.- Returns:
- true on success; false in case of an error.
- Since:
- 1.5
-