BlockingQueue

A blocking queue of type T.

class BlockingQueue : Queue!T(
T
) {}

Members

Functions

pop
T pop(bool block = true)

Pops a single item off the front of the queue. Throws an exception if the

Meta