Package org.acplt.oncrpc.server
Class OncRpcTcpServerTransport.TransportList.Node
java.lang.Object
org.acplt.oncrpc.server.OncRpcTcpServerTransport.TransportList.Node
- Enclosing class:
- OncRpcTcpServerTransport.TransportList
Node class referencing an individual open transport and holding
references to the previous and next open transports.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) Object
The item/object placed at this position in the list.(package private) OncRpcTcpServerTransport.TransportList.Node
Next item node (in other words: next open transport) in the list.(package private) OncRpcTcpServerTransport.TransportList.Node
Previous item node (in other words: previous open transport) in the list. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
next
Next item node (in other words: next open transport) in the list. This will never benull
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 benull
for the last item, but instead reference the first item. Thus, the list is circular. -
item
Object itemThe item/object placed at this position in the list. This currently always references an open transport.
-
-
Constructor Details
-
Node
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.
-