Package io.netty.channel.unix
Class ErrorsStaticallyReferencedJniMethods
- java.lang.Object
-
- io.netty.channel.unix.ErrorsStaticallyReferencedJniMethods
-
final class ErrorsStaticallyReferencedJniMethods extends java.lang.ObjectThis 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.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateErrorsStaticallyReferencedJniMethods()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static interrnoEAGAIN()(package private) static interrnoEBADF()(package private) static interrnoECONNRESET()(package private) static interrnoEINPROGRESS()(package private) static interrnoENOENT()(package private) static interrnoENOTCONN()(package private) static interrnoEPIPE()(package private) static interrnoEWOULDBLOCK()(package private) static interrorEALREADY()(package private) static interrorECONNREFUSED()(package private) static interrorEHOSTUNREACH()(package private) static interrorEISCONN()(package private) static interrorENETUNREACH()(package private) static java.lang.StringstrError(int err)
-
-
-
Method Detail
-
errnoENOENT
static int errnoENOENT()
-
errnoEBADF
static int errnoEBADF()
-
errnoEPIPE
static int errnoEPIPE()
-
errnoECONNRESET
static int errnoECONNRESET()
-
errnoENOTCONN
static int errnoENOTCONN()
-
errnoEAGAIN
static int errnoEAGAIN()
-
errnoEWOULDBLOCK
static int errnoEWOULDBLOCK()
-
errnoEINPROGRESS
static int errnoEINPROGRESS()
-
errorECONNREFUSED
static int errorECONNREFUSED()
-
errorEISCONN
static int errorEISCONN()
-
errorEALREADY
static int errorEALREADY()
-
errorENETUNREACH
static int errorENETUNREACH()
-
errorEHOSTUNREACH
static int errorEHOSTUNREACH()
-
strError
static java.lang.String strError(int err)
-
-