uv_timer_init : HasIO io => Ptr Loop -> Ptr Timer -> io Int32 Initialize the handle.
Totality: total
Visibility: exportuv_timer_start : HasIO io => Ptr Timer -> (Ptr Timer -> IO ()) -> Bits64 -> Bits64 -> io Int32 Start the timer. timeout and repeat are in milliseconds.
If timeout is zero, the callback fires on the next
event loop iteration. If repeat is non-zero, the callback fires
first after timeout milliseconds and then repeatedly after repeat
milliseconds.
Totality: total
Visibility: exportuv_timer_stop : HasIO io => Ptr Timer -> io Int32 Stop the timer, the callback will not be called anymore.
Totality: total
Visibility: exportuv_timer_again : HasIO io => Ptr Timer -> io Int32 Stop the timer, and if it is repeating restart it using
the repeat value as the timeout. If the timer has
never been started before it returns UV_EINVAL.
Totality: total
Visibility: exportuv_timer_set_repeat : HasIO io => Ptr Timer -> Bits64 -> io () Set the repeat interval value in milliseconds. The timer
will be scheduled to run on the given interval, regardless
of the callback execution duration, and will follow normal
timer semantics in the case of a time-slice overrun.
For example, if a 50ms repeating timer first runs for 17ms,
it will be scheduled to run again 33ms later. If other tasks
consume more than the 33ms following the first timer callback,
then the callback will run as soon as possible.
NOTE:
If the repeat value is set from a timer callback it does
not immediately take effect. If the timer was non-repeating
before, it will have been stopped. If it was repeating, then the
old repeat value will have been used to schedule the next timeout.
Totality: total
Visibility: exportuv_timer_get_repeat : HasIO io => Ptr Timer -> io Bits64 Get the timer repeat value.
Totality: total
Visibility: exportuv_timer_get_due_in : HasIO io => Ptr Timer -> io Bits64 Get the timer due value or 0 if it has expired. The time is relative to
uv_now.
Totality: total
Visibility: export