Uses of Class
com.fasterxml.jackson.core.util.BufferRecycler

Packages that use BufferRecycler
com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing JSON parser (JsonParser) and generator (JsonParser) 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
protected static ThreadLocal<SoftReference<BufferRecycler>> JsonFactory._recyclerRef
          This ThreadLocal contains a SoftRerefence to a BufferRecycler used to provide a low-cost buffer recycling between reader and writer instances.
 

Methods in com.fasterxml.jackson.core that return BufferRecycler
 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
protected  BufferRecycler IOContext._bufferRecycler
          Recycler used for actual allocation/deallocation/reuse
 

Constructors in com.fasterxml.jackson.core.io with parameters of type BufferRecycler
IOContext(BufferRecycler br, Object sourceRef, boolean managedResource)
           
SegmentedStringWriter(BufferRecycler br)
           
 

Uses of BufferRecycler in com.fasterxml.jackson.core.util
 

Constructors in com.fasterxml.jackson.core.util with parameters of type BufferRecycler
ByteArrayBuilder(BufferRecycler br)
           
ByteArrayBuilder(BufferRecycler br, int firstBlockSize)
           
TextBuffer(BufferRecycler allocator)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.