A general purpose reader of data from avro streams. This reader analyzes and resolves the reader and writer schemas when constructed so that reads can be more efficient. Once constructed, a reader can be reused or shared among threads to avoid incurring more resolution costs.
More...
|
delegate object | ReadItem (object reuse, Decoder dec) |
|
| PreresolvingDatumReader (Schema writerSchema, Schema readerSchema) |
|
abstract ArrayAccess | GetArrayAccess (ArraySchema readerSchema) |
|
abstract EnumAccess | GetEnumAccess (EnumSchema readerSchema) |
|
abstract MapAccess | GetMapAccess (MapSchema readerSchema) |
|
abstract RecordAccess | GetRecordAccess (RecordSchema readerSchema) |
|
abstract FixedAccess | GetFixedAccess (FixedSchema readerSchema) |
|
virtual bool | IsReusable (Schema.Type tag) |
| Indicates if it's possible to reuse an object of the specified type. Generally false for immutable objects like int, long, string, etc but may differ between the Specific and Generic implementations. Used to avoid retrieving the existing value if it's not reusable. More...
|
|
A general purpose reader of data from avro streams. This reader analyzes and resolves the reader and writer schemas when constructed so that reads can be more efficient. Once constructed, a reader can be reused or shared among threads to avoid incurring more resolution costs.