Package com.fasterxml.jackson.core.util
Class JsonRecyclerPools.ThreadLocalPool
- java.lang.Object
-
- com.fasterxml.jackson.core.util.RecyclerPool.ThreadLocalPoolBase<BufferRecycler>
-
- com.fasterxml.jackson.core.util.JsonRecyclerPools.ThreadLocalPool
-
- All Implemented Interfaces:
RecyclerPool<BufferRecycler>,java.io.Serializable
- Enclosing class:
- JsonRecyclerPools
public static class JsonRecyclerPools.ThreadLocalPool extends RecyclerPool.ThreadLocalPoolBase<BufferRecycler>
ThreadLocal-basedRecyclerPoolimplementation used for recyclingBufferRecyclerinstances: seeRecyclerPool.ThreadLocalPoolBasefor full explanation of functioning.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.fasterxml.jackson.core.util.RecyclerPool
RecyclerPool.BoundedPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.ConcurrentDequePoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.LockFreePoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.NonRecyclingPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.StatefulImplBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.ThreadLocalPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.WithPool<P extends RecyclerPool.WithPool<P>>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BufferRecycleracquirePooled()Method for sub-classes to implement for actual acquire logic; called byRecyclerPool.acquireAndLinkPooled().-
Methods inherited from class com.fasterxml.jackson.core.util.RecyclerPool.ThreadLocalPoolBase
acquireAndLinkPooled, clear, pooledCount, releasePooled
-
-
-
-
Method Detail
-
acquirePooled
public BufferRecycler acquirePooled()
Description copied from interface:RecyclerPoolMethod for sub-classes to implement for actual acquire logic; called byRecyclerPool.acquireAndLinkPooled().- Specified by:
acquirePooledin interfaceRecyclerPool<BufferRecycler>- Specified by:
acquirePooledin classRecyclerPool.ThreadLocalPoolBase<BufferRecycler>- Returns:
- Instance acquired (pooled or just constructed)
-
-