! Create safe blocking queue. */
| 39 | |
| 40 | /*! Create safe blocking queue. */ |
| 41 | ThreadBlockingQueue() { |
| 42 | //at least 1 (== Java SynchronizedQueue) |
| 43 | m_max_num_items = MIN_ITEM_NB; |
| 44 | }; |
| 45 | |
| 46 | //Forbid Copy construction. |
| 47 | ThreadBlockingQueue(const ThreadBlockingQueue& sq) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected