Class MappedByteBufferPool

java.lang.Object
org.eclipse.jetty.io.MappedByteBufferPool
All Implemented Interfaces:
ByteBufferPool, Dumpable
Direct Known Subclasses:
MappedByteBufferPool.Tagged

@ManagedObject public class MappedByteBufferPool extends Object implements Dumpable

A ByteBuffer pool where ByteBuffers are held in queues that are held in a Map.

Given a capacity factor of 1024, the Map entry with key 1 holds a queue of ByteBuffers each of capacity 1024, the Map entry with key 2 holds a queue of ByteBuffers each of capacity 2048, and so on.