示例#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));
 }
示例#2
0
 unsafe public static extern int uv_timer_start(UvTimerHandle handle,uv_timer_cb cb,long timeout,long repeat);
示例#3
0
文件: Imports.cs 项目: gigi81/sharpuv
 internal static extern int uv_timer_start(IntPtr timer, uv_timer_cb cb, long after, long repeat);
示例#4
0
 static extern int uv_timer_start(IntPtr timer, uv_timer_cb callback, ulong timeout, ulong repeat);
示例#5
0
文件: Timer.cs 项目: gigi81/sharpuv
 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);
 }
示例#6
0
 static extern int uv_timer_start(IntPtr timer, uv_timer_cb callback, ulong timeout, ulong repeat);
示例#7
0
 internal static extern int uv_timer_start(IntPtr timer, uv_timer_cb cb, long after, long repeat);         // uv_timer_t*
示例#8
0
 internal static extern int uv_timer_start(IntPtr handle, uv_timer_cb timer_cb, long timeout, long repeat);
示例#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);
 }