Esempio n. 1
0
 unsafe public static extern int uv_timer_stop(UvTimerHandle handle);
Esempio n. 2
0
 unsafe public static extern int uv_timer_start(UvTimerHandle handle,uv_timer_cb cb,long timeout,long repeat);
Esempio n. 3
0
 unsafe public static extern int uv_timer_init(UvLoopHandle loop,UvTimerHandle handle);
Esempio n. 4
0
 unsafe public void timer_stop(UvTimerHandle handle)
 {
     handle.Validate();
     ThrowIfErrored(_uv_timer_stop(handle));
 }
Esempio 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));
 }
Esempio n. 6
0
 unsafe public void timer_init(UvLoopHandle loop, UvTimerHandle handle)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_timer_init(loop, handle));
 }