예제 #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
 public int pipe_pending_count(UvPipeHandle handle)
 {
     handle.Validate();
     return _uv_pipe_pending_count(handle);
 }
예제 #6
0
 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
 public void pipe_bind(UvPipeHandle handle, string name)
 {
     handle.Validate();
     ThrowIfErrored(_uv_pipe_bind(handle, name));
 }
예제 #8
0
 public void pipe_init(UvLoopHandle loop, UvPipeHandle handle, bool ipc)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_pipe_init(loop, handle, ipc ? -1 : 0));
 }