@InterfaceAudience.Private public class BoundedByteBufferPool extends Object
The intended use case is a reservoir of bytebuffers that an RPC can reuse; buffers tend to achieve a particular 'run' size over time give or take a few extremes. Set TRACE level on this class for a couple of seconds to get reporting on how it is running when deployed.
This class is thread safe.
| Constructor and Description | 
|---|
| BoundedByteBufferPool(int maxByteBufferSizeToCache,
                     int initialByteBufferSize,
                     int maxToCache) | 
public BoundedByteBufferPool(int maxByteBufferSizeToCache,
                     int initialByteBufferSize,
                     int maxToCache)
maxByteBufferSizeToCache - initialByteBufferSize - maxToCache - public ByteBuffer getBuffer()
public void putBuffer(ByteBuffer bb)
Copyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.