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