Uses of Class
com.fasterxml.jackson.core.util.BufferRecycler
Packages that use BufferRecycler
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Utility classes used by Jackson Core functionality.
-
Uses of BufferRecycler in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core with type parameters of type BufferRecyclerModifier and TypeFieldDescriptionprotected RecyclerPool<BufferRecycler> JsonFactory._recyclerPoolRecyclerPoolconfigured for use by this factory: used for recycling underlying read and/or write buffers viaBufferRecycler.protected RecyclerPool<BufferRecycler> TSFBuilder._recyclerPoolMethods in com.fasterxml.jackson.core that return BufferRecyclerModifier and TypeMethodDescriptionJsonFactory._getBufferRecycler()Method used by factory to create buffer recycler instances for parsers and generators.Methods in com.fasterxml.jackson.core that return types with arguments of type BufferRecyclerModifier and TypeMethodDescriptionJsonFactory._getRecyclerPool()Accessor for getting access toRecyclerPoolfor gettingBufferRecyclerinstance to use.TSFBuilder.recyclerPool()Method parameters in com.fasterxml.jackson.core with type arguments of type BufferRecyclerModifier and TypeMethodDescriptionTSFBuilder.recyclerPool(RecyclerPool<BufferRecycler> p) JsonFactory.setRecyclerPool(RecyclerPool<BufferRecycler> p) -
Uses of BufferRecycler in com.fasterxml.jackson.core.io
Fields in com.fasterxml.jackson.core.io declared as BufferRecyclerModifier and TypeFieldDescriptionprotected final BufferRecyclerIOContext._bufferRecyclerRecycler used for actual allocation/deallocation/reuseMethods in com.fasterxml.jackson.core.io that return BufferRecyclerModifier and TypeMethodDescriptionIOContext.bufferRecycler()SegmentedStringWriter.bufferRecycler()Constructors in com.fasterxml.jackson.core.io with parameters of type BufferRecyclerModifierConstructorDescriptionIOContext(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, BufferRecycler br, ContentReference contentRef, boolean managedResource) Main constructor to use.IOContext(StreamReadConstraints src, BufferRecycler br, ContentReference contentRef, boolean managedResource) Deprecated.Since 2.16.IOContext(BufferRecycler br, ContentReference contentRef, boolean managedResource) Deprecated.Since 2.15.IOContext(BufferRecycler br, Object rawContent, boolean managedResource) Deprecated. -
Uses of BufferRecycler in com.fasterxml.jackson.core.util
Subclasses with type arguments of type BufferRecycler in com.fasterxml.jackson.core.utilModifier and TypeClassDescriptionstatic classRecyclerPoolimplementation that uses a bounded queue (ArrayBlockingQueuefor recycling instances.static classRecyclerPoolimplementation that usesConcurrentLinkedDequefor recycling instances.static classRecyclerPoolimplementation that uses a lock free linked list for recycling instances.static classDummyRecyclerPoolimplementation that does not recycle anything but simply creates new instances when asked to acquire items.static classThreadLocal-basedRecyclerPoolimplementation used for recyclingBufferRecyclerinstances: seeRecyclerPool.ThreadLocalPoolBasefor full explanation of functioning.Classes in com.fasterxml.jackson.core.util that implement interfaces with type arguments of type BufferRecyclerModifier and TypeClassDescriptionclassThis is a small utility class, whose main functionality is to allow simple reuse of raw byte/char buffers.Fields in com.fasterxml.jackson.core.util with type parameters of type BufferRecyclerModifier and TypeFieldDescriptionprotected static final ThreadLocal<SoftReference<BufferRecycler>> BufferRecyclers._recyclerRefDeprecated.ThisThreadLocalcontains aSoftReferenceto aBufferRecyclerused to provide a low-cost buffer recycling between reader and writer instances.Methods in com.fasterxml.jackson.core.util that return BufferRecyclerModifier and TypeMethodDescriptionJsonRecyclerPools.NonRecyclingPool.acquirePooled()JsonRecyclerPools.ThreadLocalPool.acquirePooled()BufferRecycler.Gettable.bufferRecycler()ByteArrayBuilder.bufferRecycler()TextBuffer.bufferRecycler()JsonRecyclerPools.BoundedPool.createPooled()JsonRecyclerPools.ConcurrentDequePool.createPooled()JsonRecyclerPools.LockFreePool.createPooled()static BufferRecyclerBufferRecyclers.getBufferRecycler()Deprecated.Since 2.16 should useRecyclerPoolabstraction instead of calling static methods of this classBufferRecycler.withPool(RecyclerPool<BufferRecycler> pool) Method called by owner of this recycler instance, to provide reference toRecyclerPoolinto which instance is to be released (if any)Methods in com.fasterxml.jackson.core.util that return types with arguments of type BufferRecyclerModifier and TypeMethodDescriptionstatic RecyclerPool<BufferRecycler> JsonRecyclerPools.defaultPool()Method to call to get the default recycler pool instance: as of Jackson 2.17.x and earlier (except for 2.17.0) this is same as callingJsonRecyclerPools.threadLocalPool()-- 2.17.0 temporarily had this callJsonRecyclerPools.newLockFreePool()(but reverted due to problems reported).static RecyclerPool<BufferRecycler> JsonRecyclerPools.newBoundedPool(int size) Accessor for constructing a new, non-sharedJsonRecyclerPools.BoundedPoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.newConcurrentDequePool()Accessor for constructing a new, non-sharedJsonRecyclerPools.ConcurrentDequePoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.newLockFreePool()Accessor for constructing a new, non-sharedJsonRecyclerPools.LockFreePoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.nonRecyclingPool()Accessor for getting the shared/globalJsonRecyclerPools.NonRecyclingPoolinstance (due to design only one instance ever needed)static RecyclerPool<BufferRecycler> JsonRecyclerPools.sharedBoundedPool()Accessor for getting the shared/globalJsonRecyclerPools.BoundedPoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.sharedConcurrentDequePool()Accessor for getting the shared/globalJsonRecyclerPools.ConcurrentDequePoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.sharedLockFreePool()Accessor for getting the shared/globalJsonRecyclerPools.LockFreePoolinstance.static RecyclerPool<BufferRecycler> JsonRecyclerPools.threadLocalPool()Accessor for getting the shared/globalJsonRecyclerPools.ThreadLocalPoolinstance (due to design only one instance ever needed)Method parameters in com.fasterxml.jackson.core.util with type arguments of type BufferRecyclerModifier and TypeMethodDescriptionBufferRecycler.withPool(RecyclerPool<BufferRecycler> pool) Method called by owner of this recycler instance, to provide reference toRecyclerPoolinto which instance is to be released (if any)Constructors in com.fasterxml.jackson.core.util with parameters of type BufferRecyclerModifierConstructorDescriptionByteArrayBuilder(BufferRecycler br, int firstBlockSize) ReadConstrainedTextBuffer(StreamReadConstraints streamReadConstraints, BufferRecycler bufferRecycler) TextBuffer(BufferRecycler allocator) protectedTextBuffer(BufferRecycler allocator, char[] initialSegment)