Package | Description |
---|---|
io.undertow.server | |
io.undertow.server.protocol.ajp | |
io.undertow.server.protocol.http | |
io.undertow.server.protocol.http2 | |
io.undertow.util | |
org.xnio |
The main API package for XNIO.
|
Modifier and Type | Class and Description |
---|---|
class |
XnioBufferPoolAdaptor
Adaptor between a ByteBufferPool and an XNIO Pool
|
Modifier and Type | Method and Description |
---|---|
abstract Pool<ByteBuffer> |
ServerConnection.getBufferPool()
Deprecated.
|
Pool<ByteBuffer> |
AbstractServerConnection.getBufferPool() |
Constructor and Description |
---|
XnioByteBufferPool(Pool<ByteBuffer> pool) |
Constructor and Description |
---|
AjpOpenListener(Pool<ByteBuffer> pool) |
AjpOpenListener(Pool<ByteBuffer> pool,
OptionMap undertowOptions) |
Constructor and Description |
---|
AlpnOpenListener(Pool<ByteBuffer> bufferPool,
OptionMap undertowOptions) |
AlpnOpenListener(Pool<ByteBuffer> bufferPool,
OptionMap undertowOptions,
DelegateOpenListener httpListener) |
AlpnOpenListener(Pool<ByteBuffer> bufferPool,
OptionMap undertowOptions,
String fallbackProtocol,
DelegateOpenListener fallbackListener) |
HttpOpenListener(Pool<ByteBuffer> pool)
Deprecated.
|
HttpOpenListener(Pool<ByteBuffer> pool,
OptionMap undertowOptions)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Pool<ByteBuffer> |
Http2ServerConnection.getBufferPool() |
Constructor and Description |
---|
Http2OpenListener(Pool<ByteBuffer> pool)
Deprecated.
|
Http2OpenListener(Pool<ByteBuffer> pool,
OptionMap undertowOptions)
Deprecated.
|
Http2OpenListener(Pool<ByteBuffer> pool,
OptionMap undertowOptions,
String protocol)
Deprecated.
|
Constructor and Description |
---|
StringReadChannelListener(Pool<ByteBuffer> bufferPool)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
ByteBufferSlicePool
Deprecated.
See
ByteBufferPool . |
Modifier and Type | Field and Description |
---|---|
static Pool<ByteBuffer> |
Pool.DIRECT
Deprecated.
A compatibility pool which maps to
ByteBufferPool.MEDIUM_DIRECT . |
static Pool<ByteBuffer> |
Pool.HEAP
Deprecated.
A compatibility pool which maps to
ByteBufferPool.MEDIUM_HEAP . |
Modifier and Type | Method and Description |
---|---|
static <B extends Buffer> |
Buffers.allocatedBufferPool(BufferAllocator<B> allocator,
int size)
A buffer pool which allocates a new buffer on every allocate request, and discards buffers on free.
|
static Pool<ByteBuffer> |
Buffers.secureBufferPool(Pool<ByteBuffer> delegate)
A byte buffer pool which zeroes the content of the buffer before re-pooling it.
|
Modifier and Type | Method and Description |
---|---|
static <I extends StreamSourceChannel,O extends StreamSinkChannel> |
ChannelListeners.initiateTransfer(I source,
O sink,
Pool<ByteBuffer> pool)
Initiate a low-copy transfer between two stream channels.
|
static <I extends StreamSourceChannel,O extends StreamSinkChannel> |
ChannelListeners.initiateTransfer(long count,
I source,
O sink,
ChannelListener<? super I> sourceListener,
ChannelListener<? super O> sinkListener,
ChannelExceptionHandler<? super I> readExceptionHandler,
ChannelExceptionHandler<? super O> writeExceptionHandler,
Pool<ByteBuffer> pool)
Initiate a low-copy transfer between two stream channels.
|
static boolean |
Buffers.isSecureBufferPool(Pool<?> pool)
Determine whether the given pool is a secure pool.
|
static Pool<ByteBuffer> |
Buffers.secureBufferPool(Pool<ByteBuffer> delegate)
A byte buffer pool which zeroes the content of the buffer before re-pooling it.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.