BlockingQueue

A blocking queue of type T.

Constructors

this
this()

Undocumented in source.

Members

Functions

pop
T pop(Duration timeout)

Undocumented in source. Be warned that the author may not have intended to support it.

pop
T pop(bool block)

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

pop
T pop()

Undocumented in source. Be warned that the author may not have intended to support it.

setSize
void setSize(size_t size)

Undocumented in source. Be warned that the author may not have intended to support it.

wait
bool wait(Duration timeout)

Undocumented in source. Be warned that the author may not have intended to support it.

wait
void wait()

Undocumented in source. Be warned that the author may not have intended to support it.

Meta