Package | Description |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
RecvByteBufAllocator.ExtendedHandle |
Modifier and Type | Class and Description |
---|---|
class |
DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle
Focuses on enforcing the maximum messages per read condition for
DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle.continueReading() . |
static class |
RecvByteBufAllocator.DelegatingHandle
A
RecvByteBufAllocator.Handle which delegates all call to some other RecvByteBufAllocator.Handle . |
Modifier and Type | Method and Description |
---|---|
protected RecvByteBufAllocator.Handle |
RecvByteBufAllocator.DelegatingHandle.delegate()
Get the
RecvByteBufAllocator.Handle which all methods will be delegated to. |
RecvByteBufAllocator.Handle |
RecvByteBufAllocator.newHandle()
Creates a new handle.
|
RecvByteBufAllocator.Handle |
FixedRecvByteBufAllocator.newHandle() |
RecvByteBufAllocator.Handle |
DefaultMaxBytesRecvByteBufAllocator.newHandle() |
RecvByteBufAllocator.Handle |
AdaptiveRecvByteBufAllocator.newHandle() |
RecvByteBufAllocator.Handle |
Channel.Unsafe.recvBufAllocHandle()
Return the assigned
RecvByteBufAllocator.Handle which will be used to allocate ByteBuf 's when
receiving data. |
RecvByteBufAllocator.Handle |
AbstractChannel.AbstractUnsafe.recvBufAllocHandle() |
Constructor and Description |
---|
DelegatingHandle(RecvByteBufAllocator.Handle delegate) |
Modifier and Type | Method and Description |
---|---|
protected int |
AbstractEpollStreamChannel.SpliceInTask.spliceIn(FileDescriptor pipeOut,
RecvByteBufAllocator.Handle handle) |
Copyright © 2008–2017 The Netty Project. All rights reserved.