Package org.eclipse.jetty.io
Class MappedByteBufferPool.Tagged
- java.lang.Object
-
- org.eclipse.jetty.io.MappedByteBufferPool
-
- org.eclipse.jetty.io.MappedByteBufferPool.Tagged
-
- All Implemented Interfaces:
ByteBufferPool,Dumpable
- Enclosing class:
- MappedByteBufferPool
@Deprecated(since="2021-05-27") public static class MappedByteBufferPool.Tagged extends MappedByteBufferPool
Deprecated.
-
-
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()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description longgetDirectMemory()Deprecated.longgetHeapMemory()Deprecated.longgetMaxDirectMemory()Deprecated.longgetMaxHeapMemory()Deprecated.longgetMemory(boolean direct)Deprecated.java.nio.ByteBuffernewByteBuffer(int capacity, boolean direct)Deprecated.Creates a new ByteBuffer of the given capacity and the given directness.-
Methods inherited from class org.eclipse.jetty.io.MappedByteBufferPool
acquire, clear, dump, getDirectByteBufferCount, getHeapByteBufferCount, isDetailedDump, release, setDetailedDump, toString
-
Methods inherited from class java.lang.Object
equals, 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)Deprecated.Description copied from interface:ByteBufferPoolCreates a new ByteBuffer of the given capacity and the given directness.
- Parameters:
capacity- the ByteBuffer capacitydirect- the ByteBuffer directness- Returns:
- a newly allocated ByteBuffer
-
getDirectMemory
@ManagedAttribute("The bytes retained by direct ByteBuffers") public long getDirectMemory()
Deprecated.
-
getHeapMemory
@ManagedAttribute("The bytes retained by heap ByteBuffers") public long getHeapMemory()
Deprecated.
-
getMaxDirectMemory
@ManagedAttribute("The max num of bytes that can be retained from direct ByteBuffers") public long getMaxDirectMemory()
Deprecated.
-
getMaxHeapMemory
@ManagedAttribute("The max num of bytes that can be retained from heap ByteBuffers") public long getMaxHeapMemory()
Deprecated.
-
getMemory
public long getMemory(boolean direct)
Deprecated.
-
-