Uses of Class
io.netty5.channel.unix.FileDescriptor
-
Packages that use FileDescriptor Package Description io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.unix Unix specific transport. -
-
Uses of FileDescriptor in io.netty5.channel.epoll
Subclasses of FileDescriptor in io.netty5.channel.epoll Modifier and Type Class Description class
LinuxSocket
A socket which provides access Linux native methods.Methods in io.netty5.channel.epoll that return FileDescriptor Modifier and Type Method Description static FileDescriptor
Native. newEpollCreate()
static FileDescriptor
Native. newEventFd()
static FileDescriptor
Native. newTimerFd()
Methods in io.netty5.channel.epoll with parameters of type FileDescriptor Modifier and Type Method Description static int
Native. epollBusyWait(FileDescriptor epollFd, EpollEventArray events)
Non-blocking variant ofNative.epollWait(FileDescriptor, EpollEventArray, FileDescriptor, int, int, long)
that will also hint to processor we are in a busy-wait loop. -
Uses of FileDescriptor in io.netty5.channel.unix
Subclasses of FileDescriptor in io.netty5.channel.unix Modifier and Type Class Description class
Socket
Provides a JNI bridge to native socket operations.Methods in io.netty5.channel.unix that return FileDescriptor Modifier and Type Method Description FileDescriptor
UnixChannel. fd()
Returns theFileDescriptor
that is used by thisChannel
.static FileDescriptor
FileDescriptor. from(File file)
Open a newFileDescriptor
for the givenFile
.static FileDescriptor
FileDescriptor. from(String path)
Open a newFileDescriptor
for the given path.static FileDescriptor[]
FileDescriptor. pipe()
Constructors in io.netty5.channel.unix with parameters of type FileDescriptor Constructor Description SocketWritableByteChannel(FileDescriptor fd)
-