Example #1
0
///
//  Get socket option `invert_matching`.
//  Available from libzmq 4.2.0.        
int QZsock::invertMatching ()
{
    int rv = zsock_invert_matching (self);
    return rv;
}
Example #2
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1invertMatching (JNIEnv *env, jclass c, jlong self)
{
    jint invert_matching_ = (jint) zsock_invert_matching ((zsock_t *) (intptr_t) self);
    return invert_matching_;
}