theLink 10.0
Loading...
Searching...
No Matches
MqContextC_TOR_JV_API

MqContextC - various functions to create, initialize and destroy a contextMore...

+ Collaboration diagram for MqContextC_TOR_JV_API:

Functions

static native MqContextC jvmqmsgque.MqContextC.Create (MqContextC tmpl)
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 
 jvmqmsgque.MqContextC.MqContextC (MqContextC tmpl)
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 
static MqContextC jvmqmsgque.MqContextC.Create ()
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 
 jvmqmsgque.MqContextC.MqContextC ()
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 
JNIEXPORT jlong JNICALL Java_jvmqmsgque_MqContextC_CTOR (JNIEnv *env, jclass class, jobject tmpl)
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 
JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqContextC_Create (JNIEnv *env, jclass class, jobject tmpl)
  Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...
 

Detailed Description

MqContextC - various functions to create, initialize and destroy a context

Function Documentation

◆ Create() [1/2]

static MqContextC jvmqmsgque.MqContextC.Create ( )
static

Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...

Definition at line 1162 of file MqContextC.java.

1162 {
1163 return Create ((MqContextC) null);
1164 }
static MqContextC Create()
Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) → C-API create...
MqContextC()
Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) → C-API create...
+ Here is the caller graph for this function:

◆ Create() [2/2]

static native MqContextC jvmqmsgque.MqContextC.Create ( MqContextC tmpl)
static

◆ Java_jvmqmsgque_MqContextC_Create()

JNIEXPORT jobject JNICALL Java_jvmqmsgque_MqContextC_Create ( JNIEnv * env,
jclass class,
jobject tmpl )

Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...

Definition at line 2687 of file MqContextC_jv.c.

2687 {
2689 MQ_CTX tmpl_hdl = (MQ_CTX)pObj2Hdl__null_allow(env,tmpl);
2690 JavaErrorCheck;
2691 MQ_CTX __retVal__L = MqContextCreate(MqContextCTT, tmpl_hdl);
2692 if (__retVal__L == NULL) {
2693 (*env)->ThrowNew(env, MK(Class_MkInitError), "MqContextC.Create");
2694 goto error;
2695 }
2696 jobject __retVal__S = MQ(MqContextC_ObjCreate)(MK_RT_CALL env,__retVal__L);
2697 return __retVal__S;
2698error:
2699 return 0;
2700}
static MK_TYP MqContextCTT
#define MK_RT_CALL
#define MkRtSetup_NULL
struct MqContextS * MQ_CTX
class-shortcut for struct MqContextS *, all shortcut using the XX_YYY syntax (only for public API) …
#define MqContextCreate(...)
PUBLIC data structure for the jvmqmsgque-specific-data

◆ Java_jvmqmsgque_MqContextC_CTOR()

JNIEXPORT jlong JNICALL Java_jvmqmsgque_MqContextC_CTOR ( JNIEnv * env,
jclass class,
jobject tmpl )

Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...

Definition at line 2671 of file MqContextC_jv.c.

2671 {
2673 MQ_CTX tmpl_hdl = (MQ_CTX)pObj2Hdl__null_allow(env,tmpl);
2674 JavaErrorCheck;
2675 MQ_CTX __retVal__L = MqContextCreate(MqContextCTT, tmpl_hdl);
2676 if (__retVal__L == NULL) {
2677 (*env)->ThrowNew(env, MK(Class_MkInitError), "MqContextC.CTOR");
2678 goto error;
2679 }
2680 jlong __retVal__S = (jlong)__retVal__L;
2681 return __retVal__S;
2682error:
2683 return 0;
2684}

◆ MqContextC() [1/2]

jvmqmsgque.MqContextC.MqContextC ( )

Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...

Definition at line 1167 of file MqContextC.java.

1167 {
1168 this(CTOR((MqContextC) null), true);
1169 }

◆ MqContextC() [2/2]

jvmqmsgque.MqContextC.MqContextC ( MqContextC tmpl)

Java: [constructor,static] MqContextC MqContextC.Create(?MqContextC tmpl = null?) C-API
create and initialize the MqContextC ...

Definition at line 1157 of file MqContextC.java.

1157 {
1158 this(CTOR(tmpl), true);
1159 }