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.
|
io.netty.channel.kqueue |
BSD specific transport.
|
io.netty.channel.rxtx |
A serial and parallel port communication transport based on RXTX.
|
io.netty.channel.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
io.netty.channel.udt |
UDT Transport.
|
io.netty.channel.unix |
Unix specific transport.
|
io.netty.util |
Utility classes used across multiple packages.
|
Modifier and Type | Class and Description |
---|---|
class |
ChannelOption<T>
A
ChannelOption allows to configure a ChannelConfig in a type-safe
way. |
Modifier and Type | Class and Description |
---|---|
class |
EpollChannelOption<T> |
Modifier and Type | Class and Description |
---|---|
class |
KQueueChannelOption<T> |
Modifier and Type | Class and Description |
---|---|
class |
RxtxChannelOption<T>
Option for configuring a serial port connection
|
Modifier and Type | Class and Description |
---|---|
class |
SctpChannelOption<T>
Option for configuring the SCTP transport
|
Modifier and Type | Class and Description |
---|---|
class |
UdtChannelOption<T>
Deprecated.
The UDT transport is no longer maintained and will be removed.
|
Modifier and Type | Class and Description |
---|---|
class |
UnixChannelOption<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
Constant<T extends Constant<T>>
A singleton which is safe to compare via the
== operator. |
class |
ConstantPool<T extends Constant<T>>
A pool of
Constant s. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractConstant<T extends AbstractConstant<T>>
Base implementation of
Constant . |
class |
AttributeKey<T>
Key which can be used to access
Attribute out of the AttributeMap . |
class |
Signal
A special
Error which is used to signal some state or request by throwing it. |
Copyright © 2008–2017 The Netty Project. All rights reserved.