Returns true when the ExecutionQueue is stopped and there will never be more tasks and you can safely release all the related resources ever after.
| 44 | // more tasks and you can safely release all the related resources ever |
| 45 | // after. |
| 46 | bool is_queue_stopped() const { return _is_stopped; } |
| 47 | explicit operator bool() const; |
| 48 | protected: |
| 49 | TaskIteratorBase(TaskNode* head, ExecutionQueueBase* queue, |
no outgoing calls