MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service … More...
Functions | |
native void | jvmqmsgque.MqContextC.SendEND (String token, long timeout) |
Java: → C-API MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service … | |
void | jvmqmsgque.MqContextC.SendEND (String token) |
Java: → C-API MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service … | |
native void | jvmqmsgque.MqContextC.SendEND_AND_CALLBACK (String token, MqServiceIF callback, long timeout) |
Java: → C-API finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback … | |
void | jvmqmsgque.MqContextC.SendEND_AND_CALLBACK (String token, MqServiceIF callback) |
Java: → C-API finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback … | |
native void | jvmqmsgque.MqContextC.SendEND_AND_SUB (String token, MqServiceIF callback, long timeout) |
Java: → C-API finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback … | |
void | jvmqmsgque.MqContextC.SendEND_AND_SUB (String token, MqServiceIF callback) |
Java: → C-API finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback … | |
native void | jvmqmsgque.MqContextC.SendEND_AND_TRANSACTION (String token, String callback, long timeout) |
Java: → C-API finish the send-data-block, call the remote service to do a longterm-transaction-call … | |
void | jvmqmsgque.MqContextC.SendEND_AND_TRANSACTION (String token, String callback) |
Java: → C-API finish the send-data-block, call the remote service to do a longterm-transaction-call … | |
native void | jvmqmsgque.MqContextC.SendEND_AND_WAIT (String token, long timeout) |
Java: → C-API finish the send-data-block, call the remote service and wait for result… | |
void | jvmqmsgque.MqContextC.SendEND_AND_WAIT (String token) |
Java: → C-API finish the send-data-block, call the remote service and wait for result… | |
native void | jvmqmsgque.MqContextC.SendSTART () |
Java: → C-API initialize the send-data-package. … | |
native void | jvmqmsgque.MqContextC.SendSYNC () |
Java: → C-API garantee that all pending asynchronous-service-calls are processed. … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendEND (JNIEnv *env, jobject self, jstring token, jlong timeout) |
Java: → C-API MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendEND_1AND_1CALLBACK (JNIEnv *env, jobject self, jstring token, jobject callback, jlong timeout) |
Java: → C-API finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendEND_1AND_1SUB (JNIEnv *env, jobject self, jstring token, jobject callback, jlong timeout) |
Java: → C-API finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendEND_1AND_1TRANSACTION (JNIEnv *env, jobject self, jstring token, jstring callback, jlong timeout) |
Java: → C-API finish the send-data-block, call the remote service to do a longterm-transaction-call … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendEND_1AND_1WAIT (JNIEnv *env, jobject self, jstring token, jlong timeout) |
Java: → C-API finish the send-data-block, call the remote service and wait for result… | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendSTART (JNIEnv *env, jobject self) |
Java: → C-API initialize the send-data-package. … | |
JNIEXPORT void JNICALL | Java_jvmqmsgque_MqContextC_SendSYNC (JNIEnv *env, jobject self) |
Java: → C-API garantee that all pending asynchronous-service-calls are processed. … | |
MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service …
calling a remote service and wait timeout seconds for an result. If timeout == 0
it is an asynchronous-service-call and if the timeout > 0
it is a synchronous-service-call.
service-call | blocking | timeout |
---|---|---|
synchronous | yes | timeout > 0 |
asynchronous | no | timeout == 0 |
blocking mean waiting max timeout seconds to finishing the service-call:
If an error was raised on the server during the service-processing… the following error-handling will be available
[in] | mkrt | the MkRuntimeS instance to work on - the runtime argument, used by MK_RT_CALL (C-only) |
[in] | ctx | the MqContextS instance to work on |
[in] | token | the MqContextC SERVICE API to identify the service |
[in] | timeout | in seconds until a timeout-error is raised (possible values like ProcessEvent) (MK_TIMEOUT_DEFAULT=0 ) |
MkExceptionC | → The default-exception from the Programming-Language-Micro-Kernel (PLMK) |
calling a remote service and wait timeout seconds for an result. If timeout == 0
it is an asynchronous-service-call and if the timeout > 0
it is a synchronous-service-call.
service-call | blocking | timeout |
---|---|---|
synchronous | yes | timeout > 0 |
asynchronous | no | timeout == 0 |
blocking mean waiting max timeout seconds to finishing the service-call:
If an error was raised on the server during the service-processing… the following error-handling will be available
[in] | mkrt | the MkRuntimeS instance to work on - the runtime argument, used by MK_RT_CALL (C-only) |
[in] | ctx | the MqContextS instance to work on |
[in] | token | the MqContextC SERVICE API to identify the service |
[in] | timeout | in seconds until a timeout-error is raised (possible values like ProcessEvent) (MK_TIMEOUT_DEFAULT=0 ) |
MkExceptionC | → The default-exception from the Programming-Language-Micro-Kernel (PLMK) |
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendEND | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | token, | ||
jlong | timeout ) |
Java:
→ C-API ctx.SendEND(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service …
Definition at line 2000 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendEND_1AND_1CALLBACK | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | token, | ||
jobject | callback, | ||
jlong | timeout ) |
Java:
→ C-API ctx.SendEND_AND_CALLBACK(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback …
Definition at line 2014 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendEND_1AND_1SUB | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | token, | ||
jobject | callback, | ||
jlong | timeout ) |
Java:
→ C-API ctx.SendEND_AND_SUB(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback …
Definition at line 2030 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendEND_1AND_1TRANSACTION | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | token, | ||
jstring | callback, | ||
jlong | timeout ) |
Java:
→ C-API ctx.SendEND_AND_TRANSACTION(String token, String callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service to do a longterm-transaction-call …
Definition at line 2046 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendEND_1AND_1WAIT | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | token, | ||
jlong | timeout ) |
Java:
→ C-API ctx.SendEND_AND_WAIT(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service and wait for result…
Definition at line 2063 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendSTART | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API ctx.SendSTART()
initialize the send-data-package. …
Definition at line 2077 of file MqContextC_jv.c.
JNIEXPORT void JNICALL Java_jvmqmsgque_MqContextC_SendSYNC | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API ctx.SendSYNC()
garantee that all pending asynchronous-service-calls are processed. …
Definition at line 2088 of file MqContextC_jv.c.
void jvmqmsgque.MqContextC.SendEND | ( | String | token | ) |
Java:
→ C-API ctx.SendEND(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service …
Definition at line 895 of file MqContextC.java.
native void jvmqmsgque.MqContextC.SendEND | ( | String | token, |
long | timeout ) |
Java:
→ C-API ctx.SendEND(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
MqContextC - finish the send-data-block and call synchronous/asynchronous a remote-service …
void jvmqmsgque.MqContextC.SendEND_AND_CALLBACK | ( | String | token, |
MqServiceIF | callback ) |
Java:
→ C-API ctx.SendEND_AND_CALLBACK(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback …
Definition at line 903 of file MqContextC.java.
native void jvmqmsgque.MqContextC.SendEND_AND_CALLBACK | ( | String | token, |
MqServiceIF | callback, | ||
long | timeout ) |
Java:
→ C-API ctx.SendEND_AND_CALLBACK(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do not-wait for the result but expect the result on a callback …
void jvmqmsgque.MqContextC.SendEND_AND_SUB | ( | String | token, |
MqServiceIF | callback ) |
Java:
→ C-API ctx.SendEND_AND_SUB(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback …
Definition at line 911 of file MqContextC.java.
native void jvmqmsgque.MqContextC.SendEND_AND_SUB | ( | String | token, |
MqServiceIF | callback, | ||
long | timeout ) |
Java:
→ C-API ctx.SendEND_AND_SUB(String token, MqServiceIF callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service, do wait for the result and expect multiple sub-results on a callback …
void jvmqmsgque.MqContextC.SendEND_AND_TRANSACTION | ( | String | token, |
String | callback ) |
Java:
→ C-API ctx.SendEND_AND_TRANSACTION(String token, String callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service to do a longterm-transaction-call …
Definition at line 919 of file MqContextC.java.
native void jvmqmsgque.MqContextC.SendEND_AND_TRANSACTION | ( | String | token, |
String | callback, | ||
long | timeout ) |
Java:
→ C-API ctx.SendEND_AND_TRANSACTION(String token, String callback, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service to do a longterm-transaction-call …
void jvmqmsgque.MqContextC.SendEND_AND_WAIT | ( | String | token | ) |
Java:
→ C-API ctx.SendEND_AND_WAIT(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service and wait for result…
Definition at line 927 of file MqContextC.java.
native void jvmqmsgque.MqContextC.SendEND_AND_WAIT | ( | String | token, |
long | timeout ) |
Java:
→ C-API ctx.SendEND_AND_WAIT(String token, ?long timeout = MkTimeoutE.DEFAULT.get()?)
finish the send-data-block, call the remote service and wait for result…
native void jvmqmsgque.MqContextC.SendSTART | ( | ) |
Java:
→ C-API ctx.SendSTART()
initialize the send-data-package. …
native void jvmqmsgque.MqContextC.SendSYNC | ( | ) |
Java:
→ C-API ctx.SendSYNC()
garantee that all pending asynchronous-service-calls are processed. …