예제 #1
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     Check(_uv_shutdown(req, handle, cb));
 }
예제 #2
0
파일: Imports.cs 프로젝트: gigi81/sharpuv
 internal static extern int uv_shutdown(IntPtr req, IntPtr handle, uv_shutdown_cb cb);
예제 #3
0
 public static extern int uv_shutdown(UvShutdownReq req,UvStreamHandle handle,uv_shutdown_cb cb);
예제 #4
0
 public static extern int uv_shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb);
예제 #5
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     Check(_uv_shutdown(req, handle, cb));
 }
예제 #6
0
파일: UvStream.cs 프로젝트: gigi81/sharpuv
        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);
        }
예제 #7
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_shutdown(req, handle, cb));
 }
예제 #8
0
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_shutdown(req, handle, cb));
 }
예제 #9
0
 internal static extern int uv_shutdown(IntPtr req, IntPtr handle, uv_shutdown_cb cb);