JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1reconnectIvl (JNIEnv *env, jclass c, jlong self)
{
    jint reconnect_ivl_ = (jint) zsock_reconnect_ivl ((zsock_t *) (intptr_t) self);
    return reconnect_ivl_;
}
Exemple #2
0
///
//  Get socket option `reconnect_ivl`.
int QZsock::reconnectIvl ()
{
    int rv = zsock_reconnect_ivl (self);
    return rv;
}
Exemple #3
0
///
//  Get socket option `reconnect_ivl`.
int QmlZsock::reconnectIvl () {
    return zsock_reconnect_ivl (self);
};