Пример #1
0
 protected TcpHandler(TcpTransport transport, ILoggingAdapter log)
 {
     this.Transport = transport;
     this.Log       = log;
 }
Пример #2
0
 public TcpServerHandler(TcpTransport transport, ILoggingAdapter log, Task <IAssociationEventListener> associationEventListener)
     : base(transport, log)
 {
     this.associationEventListener = associationEventListener;
     throw new System.NotImplementedException();
 }
Пример #3
0
 public TcpClientHandler(TcpTransport transport, ILoggingAdapter log, Address remoteAddress)
     : base(transport, log)
 {
     this.remoteAddress = remoteAddress;
     this.statusPromise = new TaskCompletionSource <AssociationHandle>();
 }