See: Description
Interface | Description |
---|---|
Decoder<T> |
A decoder is a method of turning byte arrays into objects.
|
RecordReader |
Typical implementations of this interface convert data from an `InputStream` received via `readRecords` into a
iterator of `ProducerRecord` instance.
|
Class | Description |
---|---|
DefaultDecoder |
The default implementation does nothing, just returns the same byte array it takes in.
|
IntegerDecoder |
The integer decoder translates bytes into integers.
|
LongDecoder |
The long decoder translates bytes into longs.
|
StringDecoder |
The string decoder translates bytes into strings.
|