Beispiel #1
0
///
//  Set socket option `recovery_ivl`.
void QZsock::setRecoveryIvl (int recoveryIvl)
{
    zsock_set_recovery_ivl (self, recoveryIvl);
    
}
JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zsock__1_1setRecoveryIvl (JNIEnv *env, jclass c, jlong self, jint recovery_ivl)
{
    zsock_set_recovery_ivl ((zsock_t *) (intptr_t) self, (int) recovery_ivl);
}