示例#1
0
 public static extern int uv_idle_stop(UVIdleHandle handle);
示例#2
0
 public static extern int uv_idle_start(UVIdleHandle handle, uv_idle_cb cb);
示例#3
0
 public static extern int uv_idle_init(UVLoopHandle loop, UVIdleHandle handle);
示例#4
0
 public static void idle_stop(UVIdleHandle handle)
 {
     handle.Validate();
     ThrowIfErrored(uv_idle_stop(handle));
 }
示例#5
0
 public static void idle_start(UVIdleHandle handle, uv_idle_cb cb)
 {
     handle.Validate();
     ThrowIfErrored(uv_idle_start(handle, cb));
 }
示例#6
0
 public static void idle_init(UVLoopHandle loop, UVIdleHandle handle)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(uv_idle_init(loop, handle));
 }