Programming: Queues: Revision history

From wikinotes

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

7 August 2022

  • curprev 02:2602:26, 7 August 2022Will talk contribs 775 bytes +775 Created page with "= Blocking Queue = <blockquote> Interface between producers, and consumers of data. A Generic FIFO Array/List in shared memory,<br> with put/take methods protected by a lock.<br> Empowers the Producer/Consumer pattern. * If the queue has a fixed-size, <code>put</code> blocks until the queue has room for another item. * Setting max queue size may keep you from running out of memory in high volume producers </blockquote><!-- Blocking Queue --> = Deque = <blockquote> A d..."