Uses of Class
org.conscrypt.BufferAllocator
-
Packages that use BufferAllocator Package Description org.conscrypt -
-
Uses of BufferAllocator in org.conscrypt
Fields in org.conscrypt declared as BufferAllocator Modifier and Type Field Description private BufferAllocator
ConscryptEngine. bufferAllocator
private BufferAllocator
ConscryptEngineSocket. bufferAllocator
private static BufferAllocator
ConscryptEngine. defaultBufferAllocator
private static BufferAllocator
BufferAllocator. UNPOOLED
Methods in org.conscrypt that return BufferAllocator Modifier and Type Method Description (package private) static BufferAllocator
ConscryptEngine. getDefaultBufferAllocator()
Returns the defaultBufferAllocator
, which may benull
if no default has been explicitly set.static BufferAllocator
BufferAllocator. unpooled()
Returns an unpooled buffer allocator, which will create a new buffer for each request.Methods in org.conscrypt with parameters of type BufferAllocator Modifier and Type Method Description (package private) abstract void
AbstractConscryptEngine. setBufferAllocator(BufferAllocator bufferAllocator)
static void
Conscrypt. setBufferAllocator(javax.net.ssl.SSLEngine engine, BufferAllocator bufferAllocator)
Provides the given engine with the provided bufferAllocator.static void
Conscrypt. setBufferAllocator(javax.net.ssl.SSLSocket socket, BufferAllocator bufferAllocator)
Provides the given socket with the provided bufferAllocator.(package private) void
ConscryptEngine. setBufferAllocator(BufferAllocator bufferAllocator)
(package private) void
ConscryptEngineSocket. setBufferAllocator(BufferAllocator bufferAllocator)
(package private) void
Java8EngineWrapper. setBufferAllocator(BufferAllocator bufferAllocator)
static void
Conscrypt. setDefaultBufferAllocator(BufferAllocator bufferAllocator)
Configures the defaultBufferAllocator
to be used by all futureSSLEngine
instances from this provider.(package private) static void
ConscryptEngine. setDefaultBufferAllocator(BufferAllocator bufferAllocator)
Configures the defaultBufferAllocator
to be used by all futureSSLEngine
andConscryptEngineSocket
instances from this provider.
-