theLink 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard
c - tcl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
MqDumpC_Class_JV_API

MqDumpC - define the class … More...

+ Collaboration diagram for MqDumpC_Class_JV_API:

Functions

static native MqDumpC jvmqmsgque.MqDumpC.HandleResolve (int netHdl)
  Java: [static] MqDumpC MqDumpC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or null if invalid…
 
native MqDumpC jvmqmsgque.MqDumpC.Next ()
  Java: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type
 
native MqDumpC jvmqmsgque.MqDumpC.Prev ()
  Java: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type
 
static native MqDumpC jvmqmsgque.MqDumpC.Instances ()
  Java: [static] MqDumpC MqDumpC.Instances() C-API
get head-instance from linked-list of MqDumpS type …
 
static native MqDumpC jvmqmsgque.MqDumpC.GetNull ()
  Java: [static] MqDumpC MqDumpC.GetNull() C-API
Null-Slot - return a MqDumpC typed NULL instance …
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_HandleResolve (JNIEnv *env, jclass class, jint netHdl)
  Java: [static] MqDumpC MqDumpC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or null if invalid…
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Next (JNIEnv *env, jobject self)
  Java: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Prev (JNIEnv *env, jobject self)
  Java: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Instances (JNIEnv *env, jclass class)
  Java: [static] MqDumpC MqDumpC.Instances() C-API
get head-instance from linked-list of MqDumpS type …
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_GetNull (JNIEnv *env, jclass class)
  Java: [static] MqDumpC MqDumpC.GetNull() C-API
Null-Slot - return a MqDumpC typed NULL instance …
 

Detailed Description

MqDumpC - define the class …

Function Documentation

◆ GetNull()

static native MqDumpC jvmqmsgque.MqDumpC.GetNull ( )
static

Java: [static] MqDumpC MqDumpC.GetNull() C-API
Null-Slot - return a MqDumpC typed NULL instance …

◆ HandleResolve()

static native MqDumpC jvmqmsgque.MqDumpC.HandleResolve ( int netHdl)
static

Java: [static] MqDumpC MqDumpC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or null if invalid…

◆ Instances()

static native MqDumpC jvmqmsgque.MqDumpC.Instances ( )
static

Java: [static] MqDumpC MqDumpC.Instances() C-API
get head-instance from linked-list of MqDumpS type …

◆ Java_jvmqmsgque_MqDumpC_GetNull()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_GetNull ( JNIEnv * env,
jclass class )

Java: [static] MqDumpC MqDumpC.GetNull() C-API
Null-Slot - return a MqDumpC typed NULL instance …

Definition at line 113 of file MqDumpC_jv.c.

113 {
115 MQ_DMP __retVal__L = MqDumpGetNull();
116 jobject __retVal__S = MQ(MqDumpC_ObjNew)(MK_RT_CALL env,__retVal__L);
117 return __retVal__S;
118}
#define MK_RT_CALL
#define MkRtSetup_NULL
static MQ_DMP MqDumpGetNull(void)
Null-Slot - return a MqDumpC typed NULL instance …
MqDumpC - the class known as dmp or dump is used to export a jvmqmsgque data package as binary …

◆ Java_jvmqmsgque_MqDumpC_HandleResolve()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_HandleResolve ( JNIEnv * env,
jclass class,
jint netHdl )

Java: [static] MqDumpC MqDumpC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or null if invalid…

Definition at line 49 of file MqDumpC_jv.c.

49 {
51 MQ_DMP __retVal__L = MqDumpHandleResolve(netHdl);
52 jobject __retVal__S = MQ(MqDumpC_ObjNew)(MK_RT_CALL env,__retVal__L);
53 return __retVal__S;
54}
#define MqDumpHandleResolve(...)

◆ Java_jvmqmsgque_MqDumpC_Instances()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Instances ( JNIEnv * env,
jclass class )

Java: [static] MqDumpC MqDumpC.Instances() C-API
get head-instance from linked-list of MqDumpS type …

Definition at line 96 of file MqDumpC_jv.c.

96 {
98 MQ_DMP __retVal__L = MqDumpInstances();
99 jobject __retVal__S = MQ(MqDumpC_ObjNew)(MK_RT_CALL env,__retVal__L);
100 return __retVal__S;
101}
#define MqDumpInstances()

◆ Java_jvmqmsgque_MqDumpC_Next()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Next ( JNIEnv * env,
jobject self )

Java: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type

Definition at line 70 of file MqDumpC_jv.c.

70 {
71 MQ_DMP hdl = (MQ_DMP)pObj2Hdl(env,"MqDumpC",self);
72 JavaErrorCheck;
73 MkRtSetup_X(hdl);
74 MQ_DMP __retVal__L = MqDumpNext(hdl);
75 jobject __retVal__S = MQ(MqDumpC_ObjNew)(MK_RT_CALL env,__retVal__L);
76 return __retVal__S;
77error:
78 return 0;
79}
#define MkRtSetup_X(x)
static MQ_DMP MqDumpNext(MQ_DMP const dmp)
get next instance from linked-list of MqDumpS type
struct MqDumpS * MQ_DMP
class-shortcut for struct MqDumpS *, all shortcut using the XX_YYY syntax (only for public API) …

◆ Java_jvmqmsgque_MqDumpC_Prev()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqDumpC_Prev ( JNIEnv * env,
jobject self )

Java: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type

Definition at line 82 of file MqDumpC_jv.c.

82 {
83 MQ_DMP hdl = (MQ_DMP)pObj2Hdl(env,"MqDumpC",self);
84 JavaErrorCheck;
85 MkRtSetup_X(hdl);
86 MQ_DMP __retVal__L = MqDumpPrev(hdl);
87 jobject __retVal__S = MQ(MqDumpC_ObjNew)(MK_RT_CALL env,__retVal__L);
88 return __retVal__S;
89error:
90 return 0;
91}
static MQ_DMP MqDumpPrev(MQ_DMP const dmp)
get previous instance from linked-list of MqDumpS type

◆ Next()

native MqDumpC jvmqmsgque.MqDumpC.Next ( )

Java: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type

◆ Prev()

native MqDumpC jvmqmsgque.MqDumpC.Prev ( )

Java: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type