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.util Jetty Client : Utility Classesorg.eclipse.jetty.fcgi.generator org.eclipse.jetty.fcgi.server org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.http2 org.eclipse.jetty.http2.client org.eclipse.jetty.http2.generator org.eclipse.jetty.http2.parser org.eclipse.jetty.http2.server org.eclipse.jetty.io Jetty IO : Core classes for Jetty IO subsystemorg.eclipse.jetty.io.ssl Jetty IO : Core SSL Supportorg.eclipse.jetty.maven.plugin Jetty Maven Plugin : Support for Jetty in Maven build lifecycleorg.eclipse.jetty.proxy Jetty Proxy : Async Proxy 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 Connectororg.eclipse.jetty.unixsocket org.eclipse.jetty.websocket.client Jetty WebSocket Client APIorg.eclipse.jetty.websocket.client.io Jetty WebSocket Client : I/O Implementation [Internal Use Only]org.eclipse.jetty.websocket.common Jetty WebSocket Common : Implementation [Internal Use Only]org.eclipse.jetty.websocket.common.extensions Jetty WebSocket Common : Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.compress Jetty WebSocket Common : Message Compression Extension Implementationsorg.eclipse.jetty.websocket.common.io Jetty WebSocket Common : I/O Implementationorg.eclipse.jetty.websocket.common.message Jetty WebSocket Common : Message Handlingorg.eclipse.jetty.websocket.common.scopes org.eclipse.jetty.websocket.jsr356 org.eclipse.jetty.websocket.server Jetty WebSocket Server : Implementation [Internal Use Only] -
-
Uses of ByteBufferPool in org.eclipse.jetty.client
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.util
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.fcgi.generator
Fields in org.eclipse.jetty.fcgi.generator declared as ByteBufferPool Modifier and Type Field Description protected ByteBufferPool
Generator. byteBufferPool
Constructors in org.eclipse.jetty.fcgi.generator with parameters of type ByteBufferPool Constructor Description ClientGenerator(ByteBufferPool byteBufferPool)
Generator(ByteBufferPool byteBufferPool)
Result(ByteBufferPool byteBufferPool, Callback callback)
ServerGenerator(ByteBufferPool byteBufferPool)
ServerGenerator(ByteBufferPool byteBufferPool, boolean sendStatus200)
-
Uses of ByteBufferPool in org.eclipse.jetty.fcgi.server
Constructors in org.eclipse.jetty.fcgi.server with parameters of type ByteBufferPool Constructor Description HttpTransportOverFCGI(ByteBufferPool byteBufferPool, Flusher flusher, int request, boolean sendStatus200)
-
Uses of ByteBufferPool in org.eclipse.jetty.http
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.http2
Constructors in org.eclipse.jetty.http2 with parameters of type ByteBufferPool Constructor Description HTTP2Connection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, ISession session, int bufferSize)
HTTP2Connection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, Parser parser, ISession session, int bufferSize)
Deprecated. -
Uses of ByteBufferPool in org.eclipse.jetty.http2.client
Methods in org.eclipse.jetty.http2.client that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
HTTP2Client. getByteBufferPool()
Methods in org.eclipse.jetty.http2.client with parameters of type ByteBufferPool Modifier and Type Method Description void
HTTP2Client. setByteBufferPool(ByteBufferPool bufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.http2.generator
Methods in org.eclipse.jetty.http2.generator that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
Generator. getByteBufferPool()
Constructors in org.eclipse.jetty.http2.generator with parameters of type ByteBufferPool Constructor Description Generator(ByteBufferPool byteBufferPool)
Generator(ByteBufferPool byteBufferPool, int maxHeaderBlockFragment)
Generator(ByteBufferPool byteBufferPool, int maxDynamicTableSize, int maxHeaderBlockFragment)
Deprecated. -
Uses of ByteBufferPool in org.eclipse.jetty.http2.parser
Constructors in org.eclipse.jetty.http2.parser with parameters of type ByteBufferPool Constructor Description HeaderBlockParser(HeaderParser headerParser, ByteBufferPool byteBufferPool, HpackDecoder hpackDecoder, BodyParser notifier)
Parser(ByteBufferPool byteBufferPool, int maxHeaderSize)
Parser(ByteBufferPool byteBufferPool, int maxHeaderSize, RateControl rateControl)
Parser(ByteBufferPool byteBufferPool, Parser.Listener listener, int maxDynamicTableSize, int maxHeaderSize)
Deprecated.ServerParser(ByteBufferPool byteBufferPool, int maxHeaderSize)
ServerParser(ByteBufferPool byteBufferPool, int maxHeaderSize, RateControl rateControl)
ServerParser(ByteBufferPool byteBufferPool, ServerParser.Listener listener, int maxDynamicTableSize, int maxHeaderSize, RateControl rateControl)
Deprecated. -
Uses of ByteBufferPool in org.eclipse.jetty.http2.server
Constructors in org.eclipse.jetty.http2.server with parameters of type ByteBufferPool Constructor Description HTTP2ServerConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, HttpConfiguration httpConfig, ISession session, int inputBufferSize, ServerSessionListener listener)
HTTP2ServerConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, HttpConfiguration httpConfig, ServerParser parser, ISession session, int inputBufferSize, ServerSessionListener listener)
Deprecated. -
Uses of ByteBufferPool in org.eclipse.jetty.io
Classes in org.eclipse.jetty.io that implement ByteBufferPool Modifier and Type Class Description class
ArrayByteBufferPool
A ByteBuffer pool where ByteBuffers are held in queues that are held in array elements.class
LeakTrackingByteBufferPool
class
LogarithmicArrayByteBufferPool
Extension of theArrayByteBufferPool
whose bucket sizes increase exponentially instead of linearly.class
MappedByteBufferPool
A ByteBuffer pool where ByteBuffers are held in queues that are held in a Map.static class
MappedByteBufferPool.Tagged
class
NullByteBufferPool
Methods in org.eclipse.jetty.io that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
ByteBufferAccumulator. getByteBufferPool()
ByteBufferPool
ByteBufferOutputStream2. getByteBufferPool()
Constructors in org.eclipse.jetty.io with parameters of type ByteBufferPool Constructor Description Bucket(ByteBufferPool pool, int capacity, int maxSize)
Deprecated.Bucket(ByteBufferPool pool, int capacity, int maxSize, java.util.function.IntConsumer memoryFunction)
ByteBufferAccumulator(ByteBufferPool bufferPool, boolean direct)
ByteBufferOutputStream2(ByteBufferPool bufferPool, boolean direct)
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
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.maven.plugin
Methods in org.eclipse.jetty.maven.plugin that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
MavenServerConnector. getByteBufferPool()
-
Uses of ByteBufferPool in org.eclipse.jetty.proxy
Methods in org.eclipse.jetty.proxy that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
ConnectHandler. getByteBufferPool()
ByteBufferPool
ProxyConnection. getByteBufferPool()
Methods in org.eclipse.jetty.proxy with parameters of type ByteBufferPool Modifier and Type Method Description void
ConnectHandler. setByteBufferPool(ByteBufferPool bufferPool)
Constructors in org.eclipse.jetty.proxy with parameters of type ByteBufferPool Constructor Description DownstreamConnection(EndPoint endPoint, java.util.concurrent.Executor executor, ByteBufferPool bufferPool, java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Object> context)
ProxyConnection(EndPoint endp, java.util.concurrent.Executor executor, ByteBufferPool bufferPool, java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Object> context)
UpstreamConnection(EndPoint endPoint, java.util.concurrent.Executor executor, ByteBufferPool bufferPool, ConnectHandler.ConnectContext connectContext)
-
Uses of ByteBufferPool in org.eclipse.jetty.server
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 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. -
Uses of ByteBufferPool in org.eclipse.jetty.unixsocket
Constructors in org.eclipse.jetty.unixsocket with parameters of type ByteBufferPool Constructor Description UnixSocketConnector(Server server, java.util.concurrent.Executor executor, Scheduler scheduler, ByteBufferPool bufferPool, int selectors, ConnectionFactory... factories)
Constructs a UnixSocketConnector with the given parameters. -
Uses of ByteBufferPool in org.eclipse.jetty.websocket.client
Methods in org.eclipse.jetty.websocket.client that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
WebSocketClient. getBufferPool()
Methods in org.eclipse.jetty.websocket.client with parameters of type ByteBufferPool Modifier and Type Method Description void
WebSocketClient. setBufferPool(ByteBufferPool bufferPool)
Set's the Bind Address on the internalHttpClient
.Constructors in org.eclipse.jetty.websocket.client with parameters of type ByteBufferPool Constructor Description WebSocketClient(ByteBufferPool bufferPool)
Deprecated.useWebSocketClient(HttpClient)
insteadWebSocketClient(SslContextFactory sslContextFactory, java.util.concurrent.Executor executor, ByteBufferPool bufferPool)
Deprecated.useWebSocketClient(HttpClient)
instead -
Uses of ByteBufferPool in org.eclipse.jetty.websocket.client.io
Constructors in org.eclipse.jetty.websocket.client.io with parameters of type ByteBufferPool Constructor Description WebSocketClientConnection(EndPoint endp, java.util.concurrent.Executor executor, Scheduler scheduler, WebSocketPolicy websocketPolicy, ByteBufferPool bufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common
Methods in org.eclipse.jetty.websocket.common that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
Generator. getBufferPool()
ByteBufferPool
LogicalConnection. getBufferPool()
Get the ByteBufferPool in use by the connectionByteBufferPool
WebSocketSession. getBufferPool()
Constructors in org.eclipse.jetty.websocket.common with parameters of type ByteBufferPool Constructor Description Generator(WebSocketPolicy policy, ByteBufferPool bufferPool)
Construct Generator with provided policy and bufferPoolGenerator(WebSocketPolicy policy, ByteBufferPool bufferPool, boolean validating)
Construct Generator with provided policy and bufferPoolGenerator(WebSocketPolicy policy, ByteBufferPool bufferPool, boolean validating, boolean readOnly)
Construct Generator with provided policy and bufferPoolParser(WebSocketPolicy wspolicy, ByteBufferPool bufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common.extensions
Methods in org.eclipse.jetty.websocket.common.extensions that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
AbstractExtension. getBufferPool()
Methods in org.eclipse.jetty.websocket.common.extensions with parameters of type ByteBufferPool Modifier and Type Method Description void
AbstractExtension. init(WebSocketPolicy policy, ByteBufferPool bufferPool)
void
AbstractExtension. setBufferPool(ByteBufferPool bufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common.extensions.compress
Constructors in org.eclipse.jetty.websocket.common.extensions.compress with parameters of type ByteBufferPool Constructor Description ByteAccumulator(int maxOverallBufferSize, ByteBufferPool byteBufferPool)
Deprecated. -
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common.io
Methods in org.eclipse.jetty.websocket.common.io that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
AbstractWebSocketConnection. getBufferPool()
Constructors in org.eclipse.jetty.websocket.common.io with parameters of type ByteBufferPool Constructor Description AbstractWebSocketConnection(EndPoint endp, java.util.concurrent.Executor executor, Scheduler scheduler, WebSocketPolicy policy, ByteBufferPool bufferPool)
FrameFlusher(ByteBufferPool bufferPool, Generator generator, EndPoint endPoint, int bufferSize, int maxGather)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common.message
Constructors in org.eclipse.jetty.websocket.common.message with parameters of type ByteBufferPool Constructor Description MessageOutputStream(OutgoingFrames outgoing, int bufferSize, ByteBufferPool bufferPool)
MessageWriter(OutgoingFrames outgoing, int bufferSize, ByteBufferPool bufferPool)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.common.scopes
Methods in org.eclipse.jetty.websocket.common.scopes that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
DelegatedContainerScope. getBufferPool()
ByteBufferPool
SimpleContainerScope. getBufferPool()
ByteBufferPool
WebSocketContainerScope. getBufferPool()
The configured Container Buffer Pool.Constructors in org.eclipse.jetty.websocket.common.scopes with parameters of type ByteBufferPool Constructor Description SimpleContainerScope(WebSocketPolicy policy, ByteBufferPool bufferPool)
SimpleContainerScope(WebSocketPolicy policy, ByteBufferPool bufferPool, java.util.concurrent.Executor executor, DecoratedObjectFactory objectFactory)
SimpleContainerScope(WebSocketPolicy policy, ByteBufferPool bufferPool, java.util.concurrent.Executor executor, SslContextFactory ssl, DecoratedObjectFactory objectFactory)
SimpleContainerScope(WebSocketPolicy policy, ByteBufferPool bufferPool, DecoratedObjectFactory objectFactory)
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.jsr356
Methods in org.eclipse.jetty.websocket.jsr356 that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
ClientContainer. getBufferPool()
-
Uses of ByteBufferPool in org.eclipse.jetty.websocket.server
Methods in org.eclipse.jetty.websocket.server that return ByteBufferPool Modifier and Type Method Description ByteBufferPool
WebSocketServerFactory. getBufferPool()
Constructors in org.eclipse.jetty.websocket.server with parameters of type ByteBufferPool Constructor Description WebSocketHandler(ByteBufferPool bufferPool)
WebSocketServerConnection(EndPoint endp, java.util.concurrent.Executor executor, Scheduler scheduler, WebSocketPolicy policy, ByteBufferPool bufferPool)
WebSocketServerFactory(javax.servlet.ServletContext context, ByteBufferPool bufferPool)
WebSocketServerFactory(javax.servlet.ServletContext context, WebSocketPolicy policy, ByteBufferPool bufferPool)
WebSocketServerFactory(WebSocketPolicy policy, java.util.concurrent.Executor executor, ByteBufferPool bufferPool)
Protected entry point forWebSocketHandler
WebSocketUpgradeHandlerWrapper(ServletContextHandler context, ByteBufferPool bufferPool)
-