コード例 #1
0
ファイル: Uv.cs プロジェクト: yellowhuang/corefxlab
 public int pipe_pending_count(UvPipeHandle handle)
 {
     handle.Validate();
     return(_uv_pipe_pending_count(handle));
 }
コード例 #2
0
ファイル: Uv.cs プロジェクト: yellowhuang/corefxlab
 public void pipe_bind(UvPipeHandle handle, string name)
 {
     handle.Validate();
     ThrowIfErrored(_uv_pipe_bind(handle, name));
 }
コード例 #3
0
ファイル: Uv.cs プロジェクト: yellowhuang/corefxlab
 public void pipe_connect(UvConnectRequest req, UvPipeHandle handle, string name, uv_connect_cb cb)
 {
     req.Validate();
     handle.Validate();
     _uv_pipe_connect(req, handle, name, cb);
 }
コード例 #4
0
ファイル: Uv.cs プロジェクト: yellowhuang/corefxlab
 public void pipe_init(UvLoopHandle loop, UvPipeHandle handle, bool ipc)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_pipe_init(loop, handle, ipc ? -1 : 0));
 }
コード例 #5
0
ファイル: Uv.cs プロジェクト: AlexGhiondea/corefxlab
 public int pipe_pending_count(UvPipeHandle handle)
 {
     handle.Validate();
     return _uv_pipe_pending_count(handle);
 }
コード例 #6
0
ファイル: Uv.cs プロジェクト: AlexGhiondea/corefxlab
 public void pipe_connect(UvConnectRequest req, UvPipeHandle handle, string name, uv_connect_cb cb)
 {
     req.Validate();
     handle.Validate();
     _uv_pipe_connect(req, handle, name, cb);
 }
コード例 #7
0
ファイル: Uv.cs プロジェクト: AlexGhiondea/corefxlab
 public void pipe_bind(UvPipeHandle handle, string name)
 {
     handle.Validate();
     ThrowIfErrored(_uv_pipe_bind(handle, name));
 }
コード例 #8
0
ファイル: Uv.cs プロジェクト: AlexGhiondea/corefxlab
 public void pipe_init(UvLoopHandle loop, UvPipeHandle handle, bool ipc)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_pipe_init(loop, handle, ipc ? -1 : 0));
 }