notify_all()
Wake up all threads waiting on this condition. This method acts like notify()
, but wakes up all waiting threads instead of one. If the calling thread has not acquired the lock when this method is called, a RuntimeError
is raised.
notify_all()
Wake up all threads waiting on this condition. This method acts like notify()
, but wakes up all waiting threads instead of one. If the calling thread has not acquired the lock when this method is called, a RuntimeError
is raised.
Please login to continue.