Example #1
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1heartbeatTimeout (JNIEnv *env, jclass c, jlong self)
{
    jint heartbeat_timeout_ = (jint) zsock_heartbeat_timeout ((zsock_t *) (intptr_t) self);
    return heartbeat_timeout_;
}
Example #2
0
///
//  Get socket option `heartbeat_timeout`.
int QZsock::heartbeatTimeout ()
{
    int rv = zsock_heartbeat_timeout (self);
    return rv;
}
Example #3
0
///
//  Get socket option `heartbeat_timeout`.
int QmlZsock::heartbeatTimeout () {
    return zsock_heartbeat_timeout (self);
};