Uses of Interface
org.eclipse.jetty.io.ByteBufferPool
-
Packages that use ByteBufferPool Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.client.http org.eclipse.jetty.client.util Jetty Client : Utility Classesorg.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.io Jetty IO : Core classes for Jetty IO subsystemorg.eclipse.jetty.io.ssl Jetty IO : Core SSL Supportorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.handler.gzip Jetty GZIP Handlerorg.eclipse.jetty.server.nio Jetty Server : Core Server Connector -
-
Uses of ByteBufferPool in org.eclipse.jetty.client
Fields in org.eclipse.jetty.client declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
GZIPContentDecoder.Factory. byteBufferPool
private ByteBufferPool
HttpClient. byteBufferPool
Methods in org.eclipse.jetty.client that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
HttpClient. getByteBufferPool()
Methods in org.eclipse.jetty.client with parameters of type ByteBufferPool Modifier and Type Method Description void
HttpClient. setByteBufferPool(ByteBufferPool byteBufferPool)
Constructors in org.eclipse.jetty.client with parameters of type ByteBufferPool Constructor Description Factory(ByteBufferPool byteBufferPool)
Factory(ByteBufferPool byteBufferPool, int bufferSize)
GZIPContentDecoder(ByteBufferPool byteBufferPool, int bufferSize)
-
Uses of ByteBufferPool in org.eclipse.jetty.client.http
Fields in org.eclipse.jetty.client.http declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
HttpSenderOverHTTP.ByteBufferRecyclerCallback. pool
Constructors in org.eclipse.jetty.client.http with parameters of type ByteBufferPool Constructor Description ByteBufferRecyclerCallback(Callback callback, ByteBufferPool pool, java.nio.ByteBuffer... buffers)
-
Uses of ByteBufferPool in org.eclipse.jetty.client.util
Fields in org.eclipse.jetty.client.util declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
PathContentProvider. bufferPool
Methods in org.eclipse.jetty.client.util that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
PathContentProvider. getByteBufferPool()
Methods in org.eclipse.jetty.client.util with parameters of type ByteBufferPool Modifier and Type Method Description void
PathContentProvider. setByteBufferPool(ByteBufferPool byteBufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.http
Fields in org.eclipse.jetty.http declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
GZIPContentDecoder. _pool
Constructors in org.eclipse.jetty.http with parameters of type ByteBufferPool Constructor Description GZIPContentDecoder(ByteBufferPool pool, int bufferSize)
-
Uses of ByteBufferPool in org.eclipse.jetty.io
Classes in org.eclipse.jetty.io that implement ByteBufferPool Modifier and Type Class Description (package private) class
AbstractByteBufferPool
class
ArrayByteBufferPool
A ByteBuffer pool where ByteBuffers are held in queues that are held in array elements.class
LeakTrackingByteBufferPool
class
MappedByteBufferPool
A ByteBuffer pool where ByteBuffers are held in queues that are held in a Map.static class
MappedByteBufferPool.Tagged
Fields in org.eclipse.jetty.io declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
ByteBufferPool.Bucket. _pool
private ByteBufferPool
ByteBufferPool.Lease. byteBufferPool
private ByteBufferPool
LeakTrackingByteBufferPool. delegate
private ByteBufferPool
RetainableByteBuffer. pool
Constructors in org.eclipse.jetty.io with parameters of type ByteBufferPool Constructor Description Bucket(ByteBufferPool pool, int capacity, int maxSize)
LeakTrackingByteBufferPool(ByteBufferPool delegate)
Lease(ByteBufferPool byteBufferPool)
RetainableByteBuffer(ByteBufferPool pool, int size)
RetainableByteBuffer(ByteBufferPool pool, int size, boolean direct)
-
Uses of ByteBufferPool in org.eclipse.jetty.io.ssl
Fields in org.eclipse.jetty.io.ssl declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
SslConnection. _bufferPool
private ByteBufferPool
SslClientConnectionFactory. byteBufferPool
Methods in org.eclipse.jetty.io.ssl with parameters of type ByteBufferPool Modifier and Type Method Description protected SslConnection
SslClientConnectionFactory. newSslConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, javax.net.ssl.SSLEngine engine)
Constructors in org.eclipse.jetty.io.ssl with parameters of type ByteBufferPool Constructor Description SslClientConnectionFactory(SslContextFactory sslContextFactory, ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, ClientConnectionFactory connectionFactory)
SslConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, javax.net.ssl.SSLEngine sslEngine)
SslConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, javax.net.ssl.SSLEngine sslEngine, boolean useDirectBuffersForEncryption, boolean useDirectBuffersForDecryption)
-
Uses of ByteBufferPool in org.eclipse.jetty.server
Fields in org.eclipse.jetty.server declared as ByteBufferPool Modifier and Type Field Description private ByteBufferPool
HttpConnection. _bufferPool
private ByteBufferPool
AbstractConnector. _byteBufferPool
Methods in org.eclipse.jetty.server that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
AbstractConnector. getByteBufferPool()
ByteBufferPool
Connector. getByteBufferPool()
ByteBufferPool
HttpChannel. getByteBufferPool()
Constructors in org.eclipse.jetty.server with parameters of type ByteBufferPool Constructor Description AbstractConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories)
AbstractNetworkConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories)
LocalConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories)
NetworkTrafficServerConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, int selectors, ConnectionFactory... factories)
ServerConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool bufferPool, int acceptors, int selectors, ConnectionFactory... factories)
-
Uses of ByteBufferPool in org.eclipse.jetty.server.handler.gzip
Constructors in org.eclipse.jetty.server.handler.gzip with parameters of type ByteBufferPool Constructor Description Decoder(ByteBufferPool pool, int bufferSize)
GzipHttpInputInterceptor(ByteBufferPool pool, int bufferSize)
-
Uses of ByteBufferPool in org.eclipse.jetty.server.nio
Constructors in org.eclipse.jetty.server.nio with parameters of type ByteBufferPool Constructor Description NetworkTrafficSelectChannelConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, int selectors, ConnectionFactory... factories)
Deprecated.
-