libuv caches the current time at the start of the event loop tick in order to reduce the number of time-related system calls (see also).
So time certainly is the current time cached when your event loop is started. You can retrieve this value though uv_now and update it using uv_update_time.
libuv
caches the current time at the start of the event loop tick in order to reduce the number of time-related system calls (see also).So
time
certainly is the current time cached when your event loop is started. You can retrieve this value thoughuv_now
and update it usinguv_update_time
.