Adds an item to back of Queue
| 239 | |
| 240 | // Adds an item to back of Queue |
| 241 | void push_back(const T& item) |
| 242 | { |
| 243 | std::scoped_lock lock(muxQueue); |
| 244 | deqQueue.emplace_back(std::move(item)); |
| 245 | |
| 246 | std::unique_lock<std::mutex> ul(muxBlocking); |
| 247 | cvBlocking.notify_one(); |
| 248 | } |
| 249 | |
| 250 | // Adds an item to front of Queue |
| 251 | void push_front(const T& item) |
no outgoing calls