Module dvcompute::simulation::queue[][src]

Expand description

The queues.

Modules

The queues that gather their statistics when simulating.

Represents unbounded queues.

Structs

Computation that creates a new Queue.

Represents an optimized bounded queue by using the specified strategies for enqueueing (input), SI, internal storing (in memory), SM, and dequeueing (output), SO, where T denotes the type of items stored in the queue.

Functions

Create a new bounded FCFS (a.k.a FIFO) queue by the specified capacity.

Create a new bounded LCFS (a.k.a LIFO) queue by the specified capacity.

Type Definitions

A type synonym for the ordinary FIFO queue, also known as the FCFS (First Come - First Serviced) queue.

A type synonym for the ordinary LIFO queue, also known as the LCFS (Last Come - First Serviced) queue.