Node
abstract class Node(label: String, val incoming: List<InputChannel<*, *>>, val outgoing: List<OutputChannel<*, *>>) : NodeGroup
Base class for nodes in the simulation network.
A node is a processing element that receives entities through input channels and sends them through output channels. Nodes form the basic building blocks of a queueing network.