Package | Description |
---|---|
org.xnio |
The main API package for XNIO.
|
Modifier and Type | Class and Description |
---|---|
class |
ByteBufferSlicePool
A buffer pooled allocator.
|
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 © 2015. All rights reserved.