Interface IRawDataProcessor
- All Known Implementing Classes:
RawDataReaderPlugin
@Deprecated
public interface IRawDataProcessor
Deprecated.
since 1.15.1 old plugin api
Interface for raw data processors, i.e. classes which decode raw data to
records and feed them into a processing pipeline.
- Since:
- 1.13
- Author:
- Holger Knoche
-
Method Summary
Modifier and Type Method Description void
decodeAndDeliverRecords(byte[] rawData)
Deprecated.Decodes the given raw data and delivers the decoded records.void
decodeAndDeliverRecords(java.nio.ByteBuffer rawData, int dataSize)
Deprecated.Decodes the given raw data and delivers the decoded records.
-
Method Details
-
decodeAndDeliverRecords
void decodeAndDeliverRecords(byte[] rawData)Deprecated.Decodes the given raw data and delivers the decoded records.- Parameters:
rawData
- The raw data to decode- Since:
- 1.13
-
decodeAndDeliverRecords
void decodeAndDeliverRecords(java.nio.ByteBuffer rawData, int dataSize)Deprecated.Decodes the given raw data and delivers the decoded records.- Parameters:
rawData
- The raw data to decodedataSize
- The size of the contained data- Since:
- 1.13
-