(sentinels, change_notifier, timeout=None)
| 499 | |
| 500 | @staticmethod |
| 501 | def _wait_for_updates(sentinels, change_notifier, timeout=None): |
| 502 | wait(sentinels, timeout=timeout) |
| 503 | while not change_notifier.empty(): |
| 504 | change_notifier.get() |
| 505 | |
| 506 | @classmethod |
| 507 | def _handle_workers(cls, cache, taskqueue, ctx, Process, processes, |
no test coverage detected