ArrivalNode
class ArrivalNode<OutputT>(label: String, destination: PushOutputChannel<OutputT>, generator: Generator<OutputT>) : SourceNode, Source<OutputT> , HasProgressBars
Simulates connections to the outside world. Generates entities according to a provided Generator and sends them to its output channel at scheduled times. Acts as the entry point for traffic into the simulation.
Parameters
OutputT
the type of entities generated
label
the name of this node
destination
the output channel where generated entities are sent
generator
the Generator that produces entities and their inter-arrival times