예제 #1
0
 public static extern int uv_fileno(UvHandle handle,ref IntPtr socket);
예제 #2
0
 public static extern void uv_unref(UvHandle handle);
예제 #3
0
 public void uv_fileno(UvHandle handle, ref IntPtr socket)
 {
     handle.Validate();
     ThrowIfErrored(_uv_fileno(handle, ref socket));
 }
예제 #4
0
 public void close(UvHandle handle, uv_close_cb close_cb)
 {
     handle.Validate(closed: true);
     _uv_close(handle.InternalGetHandle(), close_cb);
 }
예제 #5
0
 public void unref(UvHandle handle)
 {
     handle.Validate();
     _uv_unref(handle);
 }