! * \brief Enqueue and item * \param item The item to enqueue */
| 573 | * \param item The item to enqueue |
| 574 | */ |
| 575 | void enqueue(const ObjectType& item) { |
| 576 | if (!shutdown_in_progress_) { |
| 577 | queue_->enqueue(item); |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | /*! |
| 582 | * \brief Get the approximate size of the queue |