Class OncRpcTcpServerTransport.TransportList.Node

java.lang.Object
org.acplt.oncrpc.server.OncRpcTcpServerTransport.TransportList.Node
Enclosing class:
OncRpcTcpServerTransport.TransportList

private class OncRpcTcpServerTransport.TransportList.Node extends Object
Node class referencing an individual open transport and holding references to the previous and next open transports.
  • Field Details

    • next

      Next item node (in other words: next open transport) in the list. This will never be null for the first item, but instead reference the last item. Thus, the list is circular.
    • prev

      Previous item node (in other words: previous open transport) in the list. This will never be null for the last item, but instead reference the first item. Thus, the list is circular.
    • item

      Object item
      The item/object placed at this position in the list. This currently always references an open transport.
  • Constructor Details

    • Node

      public Node(Object item)
      Create a new instance of a node object and let it reference an open transport. The creator of this object is then responsible for adding this node to the circular list itself.