Ejemplo n.º 1
0
///
//  Configure the threshold value of filesystem object age per st_mtime
//  that should elapse until we consider that object "stable" at the
//  current zclock_time() moment.
//  The default is S_DEFAULT_ZSYS_FILE_STABLE_AGE_MSEC defined in zsys.c
//  which generally depends on host OS, with fallback value of 5000.
void QmlZsysAttached::setFileStableAgeMsec (int64_t fileStableAgeMsec) {
    zsys_set_file_stable_age_msec (fileStableAgeMsec);
};
Ejemplo n.º 2
0
JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zsys__1_1setFileStableAgeMsec (JNIEnv *env, jclass c, jlong file_stable_age_msec)
{
    zsys_set_file_stable_age_msec ((int64_t) file_stable_age_msec);
}
Ejemplo n.º 3
0
///
//  Configure the threshold value of filesystem object age per st_mtime
//  that should elapse until we consider that object "stable" at the
//  current zclock_time() moment.
//  The default is S_DEFAULT_ZSYS_FILE_STABLE_AGE_MSEC defined in zsys.c
//  which generally depends on host OS, with fallback value of 5000.
void QZsys::setFileStableAgeMsec (int64_t fileStableAgeMsec)
{
    zsys_set_file_stable_age_msec (fileStableAgeMsec);

}