pub unsafe extern "C" fn cass_timestamp_gen_monotonic_new_with_settings(
    warning_threshold_us: cass_int64_t,
    warning_interval_ms: cass_int64_t
) -> *mut CassTimestampGen
Expand description

Same as cass_timestamp_gen_monotonic_new(), but with settings for controlling warnings about clock skew.

@param warning_threshold_us The amount of clock skew, in microseconds, that must be detected before a warning is triggered. A threshold less than 0 can be used to disable warnings. @param warning_interval_ms The amount of time, in milliseonds, to wait before warning again about clock skew. An interval value less than or equal to 0 allows the warning to be triggered every millisecond. @return Returns a timestamp generator that must be freed.