예제 #1
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1recoveryIvl (JNIEnv *env, jclass c, jlong self)
{
    jint recovery_ivl_ = (jint) zsock_recovery_ivl ((zsock_t *) (intptr_t) self);
    return recovery_ivl_;
}
예제 #2
0
파일: qzsock.cpp 프로젝트: digideskio/zebra
///
//  Get socket option `recovery_ivl`.
int QZsock::recoveryIvl ()
{
    int rv = zsock_recovery_ivl (self);
    return rv;
}
예제 #3
0
///
//  Get socket option `recovery_ivl`.
int QmlZsock::recoveryIvl () {
    return zsock_recovery_ivl (self);
};