Ejemplo n.º 1
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     Check(_uv_shutdown(req, handle, cb));
 }
Ejemplo n.º 2
0
 internal static extern int uv_shutdown(IntPtr req, IntPtr handle, uv_shutdown_cb cb);
Ejemplo n.º 3
0
 public static extern int uv_shutdown(UvShutdownReq req,UvStreamHandle handle,uv_shutdown_cb cb);
Ejemplo n.º 4
0
 public static extern int uv_shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb);
Ejemplo n.º 5
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     Check(_uv_shutdown(req, handle, cb));
 }
Ejemplo n.º 6
0
        protected override void InitDelegates()
        {
            base.InitDelegates();

            _allocDelegate    = new uv_alloc_cb(this.OnAlloc);
            _readDelegate     = new uv_read_cb(this.OnRead);
            _writeDelegate    = new uv_write_cb(this.OnWrite);
            _shutdownDelegate = new uv_shutdown_cb(this.OnShutdown);
        }
Ejemplo n.º 7
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_shutdown(req, handle, cb));
 }
Ejemplo n.º 8
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_shutdown(req, handle, cb));
 }
Ejemplo n.º 9
0
 internal static extern int uv_shutdown(IntPtr req, IntPtr handle, uv_shutdown_cb cb);