Example #1
0
 public static extern int uv_listen(UvStreamHandle handle,int backlog,uv_connection_cb cb);
Example #2
0
 internal static extern int uv_listen(IntPtr stream, int backlog, uv_connection_cb cb);
Example #3
0
 public void listen(UvStreamHandle handle, int backlog, uv_connection_cb cb)
 {
     handle.Validate();
     Check(_uv_listen(handle, backlog, cb));
 }
Example #4
0
 public void listen(UvStreamHandle handle, int backlog, uv_connection_cb cb)
 {
     handle.Validate();
     ThrowIfErrored(_uv_listen(handle, backlog, cb));
 }
Example #5
0
 static PipeServer()
 {
     unmanaged_callback = StaticCallback;
 }
Example #6
0
 internal static extern int uv_listen(IntPtr stream, int backlog, uv_connection_cb cb);         // uv_stream_t*
Example #7
0
 public void listen(UvStreamHandle handle, int backlog, uv_connection_cb cb)
 {
     handle.Validate();
     Check(_uv_listen(handle, backlog, cb));
 }
Example #8
0
 static TcpServer()
 {
     unmanaged_callback = StaticCallback;
 }
Example #9
0
 public static extern int uv_listen(UvStreamHandle handle, int backlog, uv_connection_cb cb);
Example #10
0
 protected override void InitDelegates()
 {
     base.InitDelegates();
     _connectionDelegate = new uv_connection_cb(this.OnClientConnected);
 }
Example #11
0
 static TcpServer()
 {
     unmanaged_callback = StaticCallback;
 }
Example #12
0
 protected override void InitDelegates()
 {
     base.InitDelegates();
     _connectionDelegate = new uv_connection_cb(this.OnClientConnected);
 }
Example #13
0
 public void listen(UvStreamHandle handle, int backlog, uv_connection_cb cb)
 {
     handle.Validate();
     ThrowIfErrored(_uv_listen(handle, backlog, cb));
 }
Example #14
0
 static PipeServer()
 {
     unmanaged_callback = StaticCallback;
 }