/// // Set socket option `invert_matching`. // Available from libzmq 4.2.0. void QZsock::setInvertMatching (int invertMatching) { zsock_set_invert_matching (self, invertMatching); }
JNIEXPORT void JNICALL Java_org_zeromq_czmq_Zsock__1_1setInvertMatching (JNIEnv *env, jclass c, jlong self, jint invert_matching) { zsock_set_invert_matching ((zsock_t *) (intptr_t) self, (int) invert_matching); }