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
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. -
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/reuseConstructors in com.fasterxml.jackson.core.io with parameters of type BufferRecycler Constructor Description IOContext(BufferRecycler br, Object sourceRef, boolean managedResource)
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 ThreadLocal<SoftReference<BufferRecycler>>
BufferRecyclers. _recyclerRef
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 static BufferRecycler
BufferRecyclers. getBufferRecycler()
Main accessor to call for accessing possibly recycledBufferRecycler
instance.Constructors in com.fasterxml.jackson.core.util with parameters of type BufferRecycler Constructor Description ByteArrayBuilder(BufferRecycler br)
ByteArrayBuilder(BufferRecycler br, int firstBlockSize)
TextBuffer(BufferRecycler allocator)
TextBuffer(BufferRecycler allocator, char[] initialSegment)
-