| Package | Description |
|---|---|
| io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
| io.netty.channel.unix |
Unix specific transport.
|
| Modifier and Type | Method and Description |
|---|---|
io.netty.channel.ChannelFuture |
AbstractEpollStreamChannel.spliceTo(FileDescriptor ch,
int offset,
int len)
Splice from this
AbstractEpollStreamChannel to another FileDescriptor. |
io.netty.channel.ChannelFuture |
AbstractEpollStreamChannel.spliceTo(FileDescriptor ch,
int offset,
int len,
io.netty.channel.ChannelPromise promise)
Splice from this
AbstractEpollStreamChannel to another FileDescriptor. |
| Constructor and Description |
|---|
AbstractEpollServerChannel(FileDescriptor fd) |
AbstractEpollStreamChannel(FileDescriptor fd) |
EpollDatagramChannel(FileDescriptor fd)
Create a new
EpollDatagramChannel from the given FileDescriptor. |
EpollDomainSocketChannel(io.netty.channel.Channel parent,
FileDescriptor fd) |
EpollDomainSocketChannel(FileDescriptor fd)
Creates a new
EpollDomainSocketChannel from an existing FileDescriptor |
EpollServerDomainSocketChannel(FileDescriptor fd)
Creates a new
EpollServerDomainSocketChannel from an existing FileDescriptor. |
EpollServerSocketChannel(FileDescriptor fd)
Creates a new
EpollServerSocketChannel from an existing FileDescriptor. |
EpollSocketChannel(FileDescriptor fd)
Creates a new
EpollSocketChannel from an existing FileDescriptor. |
| Modifier and Type | Method and Description |
|---|---|
FileDescriptor |
UnixChannel.fd()
Returns the
FileDescriptor that is used by this Channel. |
static FileDescriptor |
FileDescriptor.from(File file)
Open a new
FileDescriptor for the given File. |
static FileDescriptor |
FileDescriptor.from(String path)
Open a new
FileDescriptor for the given path. |
Copyright © 2008–2015 The Netty Project. All rights reserved.