Ejemplo n.º 1
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1reconnectIvlMax (JNIEnv *env, jclass c, jlong self)
{
    jint reconnect_ivl_max_ = (jint) zsock_reconnect_ivl_max ((zsock_t *) (intptr_t) self);
    return reconnect_ivl_max_;
}
Ejemplo n.º 2
0
///
//  Get socket option `reconnect_ivl_max`.
int QZsock::reconnectIvlMax ()
{
    int rv = zsock_reconnect_ivl_max (self);
    return rv;
}
Ejemplo n.º 3
0
///
//  Get socket option `reconnect_ivl_max`.
int QmlZsock::reconnectIvlMax () {
    return zsock_reconnect_ivl_max (self);
};