See: Description
Class | Description |
---|---|
AbstractEpollChannel | |
AbstractEpollServerChannel | |
AbstractEpollStreamChannel | |
Epoll |
Tells if
netty-transport-native-epoll is supported. |
EpollChannelConfig | |
EpollChannelOption<T> | |
EpollDatagramChannel |
DatagramChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
EpollDatagramChannelConfig | |
EpollDomainSocketChannel | |
EpollDomainSocketChannelConfig | |
EpollEventArray |
This is an internal datastructure which can be directly passed to epoll_wait to reduce the overhead.
|
EpollEventLoop |
EventLoop which uses epoll under the covers. |
EpollEventLoopGroup |
EventLoopGroup which uses epoll under the covers. |
EpollServerChannelConfig | |
EpollServerDomainSocketChannel | |
EpollServerSocketChannel |
ServerSocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
EpollServerSocketChannelConfig | |
EpollSocketChannel |
SocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
EpollSocketChannelConfig | |
EpollTcpInfo |
struct tcp_info
{
__u8 tcpi_state;
__u8 tcpi_ca_state;
__u8 tcpi_retransmits;
__u8 tcpi_probes;
__u8 tcpi_backoff;
__u8 tcpi_options;
__u8 tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;
__u32 tcpi_rto;
__u32 tcpi_ato;
__u32 tcpi_snd_mss;
__u32 tcpi_rcv_mss;
__u32 tcpi_unacked;
__u32 tcpi_sacked;
__u32 tcpi_lost;
__u32 tcpi_retrans;
__u32 tcpi_fackets;
__u32 tcpi_last_data_sent;
__u32 tcpi_last_ack_sent;
__u32 tcpi_last_data_recv;
__u32 tcpi_last_ack_recv;
__u32 tcpi_pmtu;
__u32 tcpi_rcv_ssthresh;
__u32 tcpi_rtt;
__u32 tcpi_rttvar;
__u32 tcpi_snd_ssthresh;
__u32 tcpi_snd_cwnd;
__u32 tcpi_advmss;
__u32 tcpi_reordering;
__u32 tcpi_rcv_rtt;
__u32 tcpi_rcv_space;
__u32 tcpi_total_retrans;
};
|
IovArray |
Represent an array of struct array and so can be passed directly over via JNI without the need to do any more
array copies.
|
Native |
Native helper methods
|
NativeDatagramPacketArray |
Support sendmmsg(...) on linux with GLIBC 2.14+
|
NativeDatagramPacketArray.NativeDatagramPacket |
Used to pass needed data to JNI.
|
NativeStaticallyReferencedJniMethods |
This class is necessary to break the following cyclic dependency:
JNI_OnLoad
JNI Calls FindClass because RegisterNatives (used to register JNI methods) requires a class
FindClass loads the class, but static members variables of that class attempt to call a JNI method which has not
yet been registered.
java.lang.UnsatisfiedLinkError is thrown because native method has not yet been registered.
Static members which call JNI methods must not be declared in this class!
|
TcpMd5Util |
Enum | Description |
---|---|
EpollMode |
The epoll mode to use.
|