Uses of Class
com.fasterxml.jackson.core.util.BufferRecycler
-
Packages that use BufferRecycler Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.com.fasterxml.jackson.core.io com.fasterxml.jackson.core.util 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 BufferRecycler Modifier and Type Field Description protected RecyclerPool<BufferRecycler>
JsonFactory. _recyclerPool
RecyclerPool
configured for use by this factory: used for recycling underlying read and/or write buffers viaBufferRecycler
.protected RecyclerPool<BufferRecycler>
TSFBuilder. _recyclerPool
Methods in com.fasterxml.jackson.core that return BufferRecycler Modifier and Type Method Description BufferRecycler
JsonFactory. _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 BufferRecycler Modifier and Type Method Description RecyclerPool<BufferRecycler>
JsonFactory. _getRecyclerPool()
Accessor for getting access toRecyclerPool
for gettingBufferRecycler
instance to use.RecyclerPool<BufferRecycler>
TSFBuilder. recyclerPool()
Method parameters in com.fasterxml.jackson.core with type arguments of type BufferRecycler Modifier and Type Method Description B
TSFBuilder. recyclerPool(RecyclerPool<BufferRecycler> p)
JsonFactory
JsonFactory. setRecyclerPool(RecyclerPool<BufferRecycler> p)
-
Uses of BufferRecycler in com.fasterxml.jackson.core.io
Fields in com.fasterxml.jackson.core.io declared as BufferRecycler Modifier and Type Field Description protected BufferRecycler
IOContext. _bufferRecycler
Recycler used for actual allocation/deallocation/reuseMethods in com.fasterxml.jackson.core.io that return BufferRecycler Modifier and Type Method Description BufferRecycler
IOContext. bufferRecycler()
BufferRecycler
SegmentedStringWriter. bufferRecycler()
Constructors in com.fasterxml.jackson.core.io with parameters of type BufferRecycler Constructor Description IOContext(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, java.lang.Object rawContent, boolean managedResource)
Deprecated.SegmentedStringWriter(BufferRecycler br)
-
Uses of BufferRecycler in com.fasterxml.jackson.core.util
Fields in com.fasterxml.jackson.core.util with type parameters of type BufferRecycler Modifier and Type Field Description protected static java.lang.ThreadLocal<java.lang.ref.SoftReference<BufferRecycler>>
BufferRecyclers. _recyclerRef
Deprecated.ThisThreadLocal
contains aSoftReference
to aBufferRecycler
used to provide a low-cost buffer recycling between reader and writer instances.Methods in com.fasterxml.jackson.core.util that return BufferRecycler Modifier and Type Method Description BufferRecycler
JsonRecyclerPools.NonRecyclingPool. acquirePooled()
BufferRecycler
JsonRecyclerPools.ThreadLocalPool. acquirePooled()
BufferRecycler
BufferRecycler.Gettable. bufferRecycler()
BufferRecycler
ByteArrayBuilder. bufferRecycler()
BufferRecycler
TextBuffer. bufferRecycler()
BufferRecycler
JsonRecyclerPools.BoundedPool. createPooled()
BufferRecycler
JsonRecyclerPools.ConcurrentDequePool. createPooled()
BufferRecycler
JsonRecyclerPools.LockFreePool. createPooled()
Deprecated.static BufferRecycler
BufferRecyclers. getBufferRecycler()
Deprecated.Since 2.16 should useRecyclerPool
abstraction instead of calling static methods of this classBufferRecycler
BufferRecycler. withPool(RecyclerPool<BufferRecycler> pool)
Method called by owner of this recycler instance, to provide reference toRecyclerPool
into which instance is to be released (if any)Methods in com.fasterxml.jackson.core.util that return types with arguments of type BufferRecycler Modifier and Type Method Description static RecyclerPool<BufferRecycler>
JsonRecyclerPools. defaultPool()
Method to call to get the default recycler pool instance: as of Jackson 2.18 this is same as callingJsonRecyclerPools.threadLocalPool()
: Jackson 2.17.0 instead had this callJsonRecyclerPools.newLockFreePool()
but this was reverted due to problems reported.static RecyclerPool<BufferRecycler>
JsonRecyclerPools. newBoundedPool(int size)
Accessor for constructing a new, non-sharedJsonRecyclerPools.BoundedPool
instance.static RecyclerPool<BufferRecycler>
JsonRecyclerPools. newConcurrentDequePool()
Accessor for constructing a new, non-sharedJsonRecyclerPools.ConcurrentDequePool
instance.static RecyclerPool<BufferRecycler>
JsonRecyclerPools. newLockFreePool()
Deprecated.Since 2.18: use one of other implementations instead; seeJsonRecyclerPools.LockFreePool
Javadocs for detailsstatic RecyclerPool<BufferRecycler>
JsonRecyclerPools. nonRecyclingPool()
Accessor for getting the shared/globalJsonRecyclerPools.NonRecyclingPool
instance (due to design only one instance ever needed)static RecyclerPool<BufferRecycler>
JsonRecyclerPools. sharedBoundedPool()
Accessor for getting the shared/globalJsonRecyclerPools.BoundedPool
instance.static RecyclerPool<BufferRecycler>
JsonRecyclerPools. sharedConcurrentDequePool()
Accessor for getting the shared/globalJsonRecyclerPools.ConcurrentDequePool
instance.static RecyclerPool<BufferRecycler>
JsonRecyclerPools. sharedLockFreePool()
Deprecated.Since 2.18: use one of other implementations instead; seeJsonRecyclerPools.LockFreePool
Javadocs for detailsstatic RecyclerPool<BufferRecycler>
JsonRecyclerPools. threadLocalPool()
Accessor for getting the shared/globalJsonRecyclerPools.ThreadLocalPool
instance (due to design only one instance ever needed)Method parameters in com.fasterxml.jackson.core.util with type arguments of type BufferRecycler Modifier and Type Method Description BufferRecycler
BufferRecycler. withPool(RecyclerPool<BufferRecycler> pool)
Method called by owner of this recycler instance, to provide reference toRecyclerPool
into which instance is to be released (if any)Constructors in com.fasterxml.jackson.core.util with parameters of type BufferRecycler Constructor Description ByteArrayBuilder(BufferRecycler br)
ByteArrayBuilder(BufferRecycler br, int firstBlockSize)
ReadConstrainedTextBuffer(StreamReadConstraints streamReadConstraints, BufferRecycler bufferRecycler)
TextBuffer(BufferRecycler allocator)
TextBuffer(BufferRecycler allocator, char[] initialSegment)
-