Uses of Class
org.eclipse.jetty.io.ByteBufferPool.Bucket
-
Packages that use ByteBufferPool.Bucket Package Description org.eclipse.jetty.io Jetty IO : Core classes for Jetty IO subsystem -
-
Uses of ByteBufferPool.Bucket in org.eclipse.jetty.io
Fields in org.eclipse.jetty.io declared as ByteBufferPool.Bucket Modifier and Type Field Description private ByteBufferPool.Bucket[]
ArrayByteBufferPool. _direct
private ByteBufferPool.Bucket[]
ArrayByteBufferPool. _indirect
Fields in org.eclipse.jetty.io with type parameters of type ByteBufferPool.Bucket Modifier and Type Field 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
Methods in org.eclipse.jetty.io that return ByteBufferPool.Bucket Modifier and Type Method 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
ArrayByteBufferPool. newBucket(int key)
private ByteBufferPool.Bucket
MappedByteBufferPool. newBucket(int key)
Methods in org.eclipse.jetty.io that return types with arguments of type ByteBufferPool.Bucket Modifier and Type Method Description (package private) java.util.concurrent.ConcurrentMap<java.lang.Integer,ByteBufferPool.Bucket>
MappedByteBufferPool. bucketsFor(boolean direct)
Method parameters in org.eclipse.jetty.io with type arguments of type ByteBufferPool.Bucket Modifier and Type Method Description private ByteBufferPool.Bucket
ArrayByteBufferPool. bucketFor(int capacity, boolean direct, java.util.function.IntFunction<ByteBufferPool.Bucket> newBucket)
Constructor parameters in org.eclipse.jetty.io with type arguments of type ByteBufferPool.Bucket Constructor 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.
-