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

Expand description

Represents unbounded queues.

Modules

The unbounded queues that gather their statistics when simulating.

Structs

Computation that creates a new Queue.

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

Functions

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

Create a new unbounded 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.