Package org.eclipse.jetty.io
Class MappedByteBufferPool.Tagged
- java.lang.Object
-
- org.eclipse.jetty.io.AbstractByteBufferPool
-
- org.eclipse.jetty.io.MappedByteBufferPool
-
- org.eclipse.jetty.io.MappedByteBufferPool.Tagged
-
- All Implemented Interfaces:
ByteBufferPool
,Dumpable
- Enclosing class:
- MappedByteBufferPool
public static class MappedByteBufferPool.Tagged extends MappedByteBufferPool
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.io.MappedByteBufferPool
MappedByteBufferPool.Tagged
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.ByteBufferPool
ByteBufferPool.Bucket, ByteBufferPool.Lease
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Constructor Summary
Constructors Constructor Description Tagged()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer
newByteBuffer(int capacity, boolean direct)
Creates a new ByteBuffer of the given capacity and the given directness.-
Methods inherited from class org.eclipse.jetty.io.MappedByteBufferPool
acquire, bucketFor, bucketsFor, capacityFor, clear, dump, getDirectByteBufferCount, getHeapByteBufferCount, isDetailedDump, release, releaseMemory, setDetailedDump, toString
-
Methods inherited from class org.eclipse.jetty.io.AbstractByteBufferPool
decrementMemory, getCapacityFactor, getDirectMemory, getHeapMemory, getMaxDirectMemory, getMaxHeapMemory, getMaxQueueLength, getMemory, incrementMemory, releaseExcessMemory, updateMemory
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.io.ByteBufferPool
remove
-
-
-
-
Method Detail
-
newByteBuffer
public java.nio.ByteBuffer newByteBuffer(int capacity, boolean direct)
Description copied from interface:ByteBufferPool
Creates a new ByteBuffer of the given capacity and the given directness.
- Parameters:
capacity
- the ByteBuffer capacitydirect
- the ByteBuffer directness- Returns:
- a newly allocated ByteBuffer
-
-