/BlockQueue

The BlockQueue pattern is a thread-safe queue implementation that allows multiple threads to push and pop elements concurrently. It provides synchronized access to the underlying queue, ensuring that no data race occurs between threads.

Primary LanguageC++GNU General Public License v3.0GPL-3.0

Watchers