See: Description
| Class | Description |
|---|---|
| ApacheAvroFactory |
Alternative
AvroFactory implementation that uses
codecs from Apache Avro library instead of Jackson "native"
codecs. |
| ApacheAvroParserImpl |
Implementation class that exposes additional internal API
to be used as callbacks by
AvroReadContext implementations. |
| ApacheCodecRecycler |
Simple helper class that contains extracted functionality for
simple encoder/decoder recycling.
|
| AvroRecyclerPools | |
| AvroRecyclerPools.BoundedPool |
RecyclerPool implementation that uses
a bounded queue (ArrayBlockingQueue for recycling instances. |
| AvroRecyclerPools.ConcurrentDequePool |
RecyclerPool implementation that uses
ConcurrentLinkedDeque for recycling instances. |
| AvroRecyclerPools.LockFreePool |
RecyclerPool implementation that uses
a lock free linked list for recycling instances. |
| AvroRecyclerPools.NonRecyclingPool |
Dummy
RecyclerPool implementation that does not recycle
anything but simply creates new instances when asked to acquire items. |
| AvroRecyclerPools.ThreadLocalPool |
ThreadLocal-based RecyclerPool implementation used for
recycling ApacheCodecRecycler instances:
see RecyclerPool.ThreadLocalPoolBase for full explanation
of functioning. |
| CustomEncodingDeserializer<T> |
Deserializes an object using a avro
CustomEncoding |
| DecoderOverAvroParser |
Wraps an AvroParser instance and allows it to be advanced by reading from it like an avro
Decoder |
Copyright © 2024 FasterXML. All rights reserved.