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