Example #1
0
 /// <summary>Create a new instance of a list of open transports.</summary>
 /// <remarks>Create a new instance of a list of open transports.</remarks>
 public TransportList(OncRpcTcpServerTransport _enclosing)
 {
     this._enclosing = _enclosing;
     head            = new org.acplt.oncrpc.server.OncRpcTcpServerTransport.TransportList.Node(this
                                                                                               , null);
     //
     // Link header node with itself, so it is its own successor
     // and predecessor. Using a header node excuses us from checking
     // for the special cases of first and last node (or both at
     // the same time).
     //
     this.head.next = this.head;
     this.head.prev = this.head;
 }
 public _TransportHelper(OncRpcTcpServerTransport _enclosing)
 {
     this._enclosing = _enclosing;
 }
Example #3
0
 public _TransportHelper(OncRpcTcpServerTransport _enclosing)
 {
     this._enclosing = _enclosing;
 }
 /// <summary>Create a new instance of a list of open transports.</summary>
 /// <remarks>Create a new instance of a list of open transports.</remarks>
 public TransportList(OncRpcTcpServerTransport _enclosing)
 {
     this._enclosing = _enclosing;
     head = new org.acplt.oncrpc.server.OncRpcTcpServerTransport.TransportList.Node(this
         , null);
     //
     // Link header node with itself, so it is its own successor
     // and predecessor. Using a header node excuses us from checking
     // for the special cases of first and last node (or both at
     // the same time).
     //
     this.head.next = this.head;
     this.head.prev = this.head;
 }