theLink 10.0
Loading...
Searching...
No Matches
MqDumpC_Misc_JV_API

MqDumpC - various functions to work on a dumpMore...

+ Collaboration diagram for MqDumpC_Misc_JV_API:

Functions

void jvmqmsgque.MqDumpC.Log ()
  Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC
 
void jvmqmsgque.MqDumpC.Log (MkObjectC fmtobj)
  Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC
 
void jvmqmsgque.MqDumpC.Log (MkObjectC fmtobj, int debug)
  Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC
 
void jvmqmsgque.MqDumpC.Log (MkObjectC fmtobj, int debug, String callfunc)
  Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC
 
native long jvmqmsgque.MqDumpC.SizeGet ()
  Java: long dump.SizeGet() C-API
report the binary data size from an MqDumpS object
 
native String jvmqmsgque.MqDumpC.TokenGet ()
  Java: String dump.TokenGet() C-API
return the MqContextC_ServiceApi_Identifer
 
JNIEXPORT jlong JNICALL Java_jvmqmsgque_MqDumpC_SizeGet (JNIEnv *env, jobject self)
  Java: long dump.SizeGet() C-API
report the binary data size from an MqDumpS object
 
JNIEXPORT jstring JNICALL Java_jvmqmsgque_MqDumpC_TokenGet (JNIEnv *env, jobject self)
  Java: String dump.TokenGet() C-API
return the MqContextC_ServiceApi_Identifer
 

Detailed Description

MqDumpC - various functions to work on a dump

Function Documentation

◆ Java_jvmqmsgque_MqDumpC_SizeGet()

JNIEXPORT jlong JNICALL Java_jvmqmsgque_MqDumpC_SizeGet ( JNIEnv * env,
jobject self )

Java: long dump.SizeGet() C-API
report the binary data size from an MqDumpS object

Definition at line 129 of file MqDumpC_jv.c.

129 {
130 MQ_DMPN hdl = (MQ_DMPN)pObj2Hdl(env,"MqDumpC",self);
131 JavaErrorCheck;
132 MkRtSetup_X(hdl);
133 MK_SIZE __retVal__L = MqDumpSizeGet(hdl);
134 jlong __retVal__S = __retVal__L;
135 return __retVal__S;
136error:
137 return 0;
138}
long MK_SIZE
#define MkRtSetup_X(x)
const struct MqDumpS * MQ_DMPN
class-shortcut for const struct MqDumpS *, all const shortcut using the XX_YYYC syntax (only for publ...
MK_SIZE MqDumpSizeGet(MQ_DMPN const dump)
report the binary data size from an MqDumpS object
MqDumpC - the class known as dmp or dump is used to export a jvmqmsgque data package as binary …

◆ Java_jvmqmsgque_MqDumpC_TokenGet()

JNIEXPORT jstring JNICALL Java_jvmqmsgque_MqDumpC_TokenGet ( JNIEnv * env,
jobject self )

Java: String dump.TokenGet() C-API
return the MqContextC_ServiceApi_Identifer

Definition at line 141 of file MqDumpC_jv.c.

141 {
142 MQ_DMPN hdl = (MQ_DMPN)pObj2Hdl(env,"MqDumpC",self);
143 JavaErrorCheck;
144 MkRtSetup_X(hdl);
145 MK_STRN __retVal__L = MqDumpTokenGet(hdl);
146 jstring __retVal__S = JC2O(env,__retVal__L);
147 return __retVal__S;
148error:
149 return 0;
150}
const MK_STRB * MK_STRN
MK_STRN MqDumpTokenGet(MQ_DMPN const dump)
return the MqContextC_ServiceApi_Identifer …

◆ Log() [1/4]

void jvmqmsgque.MqDumpC.Log ( )

Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC

Definition at line 91 of file MqDumpC.java.

91 {
92 Log ((MkObjectC) null, 0, null, 0);
93 }
void Log()
Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?...
Definition MqDumpC.java:91
+ Here is the caller graph for this function:

◆ Log() [2/4]

void jvmqmsgque.MqDumpC.Log ( MkObjectC fmtobj)

Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC

Definition at line 96 of file MqDumpC.java.

96 {
97 Log (fmtobj, 0, null, 0);
98 }

◆ Log() [3/4]

void jvmqmsgque.MqDumpC.Log ( MkObjectC fmtobj,
int debug )

Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC

Definition at line 101 of file MqDumpC.java.

101 {
102 Log (fmtobj, debug, null, 0);
103 }

◆ Log() [4/4]

void jvmqmsgque.MqDumpC.Log ( MkObjectC fmtobj,
int debug,
String callfunc )

Java: dmp.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MqDumpC

Definition at line 106 of file MqDumpC.java.

106 {
107 Log (fmtobj, debug, callfunc, 0);
108 }

◆ SizeGet()

native long jvmqmsgque.MqDumpC.SizeGet ( )

Java: long dump.SizeGet() C-API
report the binary data size from an MqDumpS object

◆ TokenGet()

native String jvmqmsgque.MqDumpC.TokenGet ( )