Expand description
The queues that gather their statistics when simulating.
Structs§
- NewQueue
- Computation that creates a new
Queue
. - Queue
- Represents a bounded queue by using the specified strategies for enqueueing (input),
SI
, internal storing (in memory),SM
, and dequeueing (output),SO
, whereT
denotes the type of items stored in the queue.
Functions§
- new_
fcfs_ queue - Create a new bounded FCFS (a.k.a FIFO) queue by the specified capacity.
- new_
lcfs_ queue - Create a new bounded LCFS (a.k.a LIFO) queue by the specified capacity.