About

A queue is collection:

  • that follows by default a first-in, first-out methodology
  • where the first element is the first element to be retrieved / removed
  • where the concept of first may be defined.

For instance, first may be define as

If the queue has a fixed size (capacity), adding an element will delete the oldest one.

Theory

wiki/Queueing_theory is the mathematical study of waiting lines

Type

Performance

Documentation / Reference