コード例 #1
0
 public LibuvPipeConnectionListener(LibuvWorker worker, string pipeName, Func <UvTcp, LibuvWorker, TConnection> connectionFactory)
     : base(worker, connectionFactory)
 {
     this.pipeName = pipeName;
 }
コード例 #2
0
 protected LibuvPipeConnectionListener(LibuvWorker worker, string pipeName)
     : base(worker)
 {
     this.pipeName = pipeName;
 }
コード例 #3
0
 protected LibuvConnectionListener(LibuvWorker worker)
 {
     this.Worker = worker;
 }
コード例 #4
0
 protected LibuvConnectionListener(LibuvWorker worker, Func <UvTcp, LibuvWorker, TConnection> connectionFactory)
     : this(worker)
 {
     this.connectionFactory = connectionFactory ?? throw new ArgumentNullException(nameof(connectionFactory));
 }
コード例 #5
0
 protected LibuvTcpConnectionBroker(LibuvWorker worker, IPEndPoint endPoint, string pipeName)
     : base(worker, endPoint)
 {
     this.PipeName = pipeName;
 }
コード例 #6
0
 protected LibuvTcpConnectionListener(LibuvWorker worker, IPEndPoint endPoint)
     : base(worker)
 {
     this.EndPoint = endPoint;
 }
コード例 #7
0
 public LibuvTcpConnectionListener(LibuvWorker worker, IPEndPoint endPoint, Func <UvTcp, LibuvWorker, TConnection> connectionFactory)
     : base(worker, connectionFactory)
 {
     this.EndPoint = endPoint;
 }