Example #1
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));
 }
Example #2
0
 unsafe public static extern int uv_timer_start(UvTimerHandle handle,uv_timer_cb cb,long timeout,long repeat);
Example #3
0
 internal static extern int uv_timer_start(IntPtr timer, uv_timer_cb cb, long after, long repeat);
Example #4
0
 static extern int uv_timer_start(IntPtr timer, uv_timer_cb callback, ulong timeout, ulong repeat);
Example #5
0
 public Timer(Loop loop)
     : base(loop, uv_handle_type.UV_TIMER)
 {
     CheckError(Uvi.uv_timer_init(this.Loop.Handle, this.Handle));
     _tick = new uv_timer_cb(this.OnTick);
 }
Example #6
0
 static extern int uv_timer_start(IntPtr timer, uv_timer_cb callback, ulong timeout, ulong repeat);
Example #7
0
 internal static extern int uv_timer_start(IntPtr timer, uv_timer_cb cb, long after, long repeat);         // uv_timer_t*
Example #8
0
 internal static extern int uv_timer_start(IntPtr handle, uv_timer_cb timer_cb, long timeout, long repeat);
Example #9
0
 public Timer(Loop loop)
     : base(loop, uv_handle_type.UV_TIMER)
 {
     CheckError(Uvi.uv_timer_init(this.Loop.Handle, this.Handle));
     _tick = new uv_timer_cb(this.OnTick);
 }