Package | Description |
---|---|
org.eclipse.jetty.io |
Jetty IO : Core classes for Jetty IO subsystem
|
Modifier and Type | Field and Description |
---|---|
private ByteBufferPool.Bucket[] |
ArrayByteBufferPool._direct |
private ByteBufferPool.Bucket[] |
ArrayByteBufferPool._indirect |
Modifier and Type | Field and Description |
---|---|
private java.util.concurrent.ConcurrentMap<java.lang.Integer,ByteBufferPool.Bucket> |
MappedByteBufferPool._directBuffers |
private java.util.concurrent.ConcurrentMap<java.lang.Integer,ByteBufferPool.Bucket> |
MappedByteBufferPool._heapBuffers |
private java.util.function.Function<java.lang.Integer,ByteBufferPool.Bucket> |
MappedByteBufferPool._newBucket |
Modifier and Type | Method and Description |
---|---|
private ByteBufferPool.Bucket |
ArrayByteBufferPool.bucketFor(int capacity,
boolean direct,
java.util.function.IntFunction<ByteBufferPool.Bucket> newBucket) |
(package private) ByteBufferPool.Bucket[] |
ArrayByteBufferPool.bucketsFor(boolean direct) |
private ByteBufferPool.Bucket |
MappedByteBufferPool.newBucket(int key) |
private ByteBufferPool.Bucket |
ArrayByteBufferPool.newBucket(int key) |
Modifier and Type | Method and Description |
---|---|
(package private) java.util.concurrent.ConcurrentMap<java.lang.Integer,ByteBufferPool.Bucket> |
MappedByteBufferPool.bucketsFor(boolean direct) |
Modifier and Type | Method and Description |
---|---|
private ByteBufferPool.Bucket |
ArrayByteBufferPool.bucketFor(int capacity,
boolean direct,
java.util.function.IntFunction<ByteBufferPool.Bucket> newBucket) |
Constructor and Description |
---|
MappedByteBufferPool(int factor,
int maxQueueLength,
java.util.function.Function<java.lang.Integer,ByteBufferPool.Bucket> newBucket)
Creates a new MappedByteBufferPool with the given configuration.
|
MappedByteBufferPool(int factor,
int maxQueueLength,
java.util.function.Function<java.lang.Integer,ByteBufferPool.Bucket> newBucket,
long maxHeapMemory,
long maxDirectMemory)
Creates a new MappedByteBufferPool with the given configuration.
|