Interface | Description |
---|---|
DomainSocketChannel |
A
UnixChannel that supports communication via
Unix Domain Socket. |
DomainSocketChannelConfig |
Special
ChannelConfig for DomainSocketChannel s. |
ServerDomainSocketChannel | |
UnixChannel |
Channel that expose operations that are only present on UNIX like systems. |
Class | Description |
---|---|
DatagramSocketAddress |
Act as special
InetSocketAddress to be able to easily pass all needed data from JNI without the need
to create more objects then needed. |
DomainSocketAddress |
A address for a
Unix Domain Socket.
|
Errors |
Internal usage only!
|
ErrorsStaticallyReferencedJniMethods |
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!
|
FileDescriptor |
Native
FileDescriptor implementation which allows to wrap an int and provide a
FileDescriptor for it. |
NativeInetAddress |
Internal usage only!
|
Socket |
Provides a JNI bridge to native socket operations.
|
Enum | Description |
---|---|
DomainSocketReadMode |
Different modes of reading from a
DomainSocketChannel . |
Exception | Description |
---|---|
Errors.NativeConnectException | |
Errors.NativeIoException |
Internal usage only!
|