Uses of Interface
org.apache.http.nio.util.ByteBufferAllocator
-
Packages that use ByteBufferAllocator Package Description org.apache.http.impl.nio Default implementations of HTTP connections for asynchronous, even driven communication.org.apache.http.impl.nio.pool Default implementations of client side connection pools for asynchronous, even driven communication.org.apache.http.impl.nio.reactor Default implementation of event driven network communication APIs based on Java NIO.org.apache.http.nio.entity Core HTTP entity implementations with support for asynchronous, event driven communication.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication.org.apache.http.nio.util Core utility classes for asynchronous, event driven communication. -
-
Uses of ByteBufferAllocator in org.apache.http.impl.nio
Fields in org.apache.http.impl.nio declared as ByteBufferAllocator Modifier and Type Field Description protected ByteBufferAllocator
DefaultClientIOEventDispatch. allocator
Deprecated.protected ByteBufferAllocator
DefaultServerIOEventDispatch. allocator
Deprecated.Methods in org.apache.http.impl.nio that return ByteBufferAllocator Modifier and Type Method Description protected ByteBufferAllocator
DefaultClientIOEventDispatch. createByteBufferAllocator()
Deprecated.Creates an instance ofHeapByteBufferAllocator
to be used by HTTP connections for allocatingByteBuffer
objects.protected ByteBufferAllocator
DefaultServerIOEventDispatch. createByteBufferAllocator()
Deprecated.Creates an instance ofHeapByteBufferAllocator
to be used by HTTP connections for allocatingByteBuffer
objects.protected ByteBufferAllocator
SSLClientIOEventDispatch. createByteBufferAllocator()
Deprecated.Creates an instance ofHeapByteBufferAllocator
to be used by HTTP connections for allocatingByteBuffer
objects.protected ByteBufferAllocator
SSLServerIOEventDispatch. createByteBufferAllocator()
Deprecated.Creates an instance ofHeapByteBufferAllocator
to be used by HTTP connections for allocatingByteBuffer
objects.Methods in org.apache.http.impl.nio with parameters of type ByteBufferAllocator Modifier and Type Method Description protected DefaultNHttpClientConnection
DefaultNHttpClientConnectionFactory. createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used.protected DefaultNHttpServerConnection
DefaultNHttpServerConnectionFactory. createConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used.protected DefaultNHttpClientConnection
SSLNHttpClientConnectionFactory. createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used.protected DefaultNHttpServerConnection
SSLNHttpServerConnectionFactory. createConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used. -
Uses of ByteBufferAllocator in org.apache.http.impl.nio.pool
Constructors in org.apache.http.impl.nio.pool with parameters of type ByteBufferAllocator Constructor Description BasicNIOConnFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
BasicNIOConnFactory(SSLContext sslContext, SSLSetupHandler sslHandler, NHttpMessageParserFactory<HttpResponse> responseParserFactory, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, ByteBufferAllocator allocator, ConnectionConfig config)
-
Uses of ByteBufferAllocator in org.apache.http.impl.nio.reactor
Constructors in org.apache.http.impl.nio.reactor with parameters of type ByteBufferAllocator Constructor Description SessionInputBufferImpl(int bufferSize, int lineBufferSize, CharsetDecoder charDecoder, ByteBufferAllocator allocator)
Creates SessionInputBufferImpl instance.SessionInputBufferImpl(int bufferSize, int lineBufferSize, MessageConstraints constraints, CharsetDecoder charDecoder, ByteBufferAllocator allocator)
Creates SessionInputBufferImpl instance.SessionInputBufferImpl(int bufferSize, int lineBufferSize, ByteBufferAllocator allocator, HttpParams params)
Deprecated.SessionOutputBufferImpl(int bufferSize, int lineBufferSize, CharsetEncoder charEncoder, ByteBufferAllocator allocator)
Creates SessionOutputBufferImpl instance.SessionOutputBufferImpl(int bufferSize, int lineBufferSize, ByteBufferAllocator allocator, HttpParams params)
Deprecated. -
Uses of ByteBufferAllocator in org.apache.http.nio.entity
Constructors in org.apache.http.nio.entity with parameters of type ByteBufferAllocator Constructor Description BufferingNHttpEntity(HttpEntity httpEntity, ByteBufferAllocator allocator)
Deprecated.SkipContentListener(ByteBufferAllocator allocator)
Deprecated. -
Uses of ByteBufferAllocator in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as ByteBufferAllocator Modifier and Type Field Description protected ByteBufferAllocator
NHttpHandlerBase. allocator
Deprecated. -
Uses of ByteBufferAllocator in org.apache.http.nio.util
Classes in org.apache.http.nio.util that implement ByteBufferAllocator Modifier and Type Class Description class
DirectByteBufferAllocator
AllocatesByteBuffer
instances usingByteBuffer.allocateDirect(int)
.class
HeapByteBufferAllocator
AllocatesByteBuffer
instances usingByteBuffer.allocate(int)
.Constructors in org.apache.http.nio.util with parameters of type ByteBufferAllocator Constructor Description ExpandableBuffer(int bufferSize, ByteBufferAllocator allocator)
Allocates buffer of the given size using the given allocator.SharedInputBuffer(int bufferSize, IOControl ioControl, ByteBufferAllocator allocator)
Deprecated.SharedInputBuffer(int bufferSize, ByteBufferAllocator allocator)
SharedOutputBuffer(int bufferSize, IOControl ioControl, ByteBufferAllocator allocator)
Deprecated.SharedOutputBuffer(int bufferSize, ByteBufferAllocator allocator)
SimpleInputBuffer(int bufferSize, ByteBufferAllocator allocator)
SimpleOutputBuffer(int bufferSize, ByteBufferAllocator allocator)
-