ThreadSafeQueue

ThreadSafeQueue is a queue (First In First Out) data structure that can be used with multithreading.

Functions

Name

Description

push_back

Adds an element at the back of the queue.

pop_front

Removes an element at the front of the queue.