Ejemplo n.º 1
0
 unsafe public static extern int uv_timer_stop(UvTimerHandle handle);
Ejemplo n.º 2
0
 unsafe public static extern int uv_timer_start(UvTimerHandle handle,uv_timer_cb cb,long timeout,long repeat);
Ejemplo n.º 3
0
 unsafe public static extern int uv_timer_init(UvLoopHandle loop,UvTimerHandle handle);
Ejemplo n.º 4
0
 unsafe public void timer_stop(UvTimerHandle handle)
 {
     handle.Validate();
     ThrowIfErrored(_uv_timer_stop(handle));
 }
Ejemplo n.º 5
0
 unsafe public void timer_start(UvTimerHandle handle, uv_timer_cb cb, long timeout, long repeat)
 {
     handle.Validate();
     ThrowIfErrored(_uv_timer_start(handle, cb, timeout, repeat));
 }
Ejemplo n.º 6
0
 unsafe public void timer_init(UvLoopHandle loop, UvTimerHandle handle)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_timer_init(loop, handle));
 }