Join the manager process (if it has been spawned)
(self, timeout=None)
| 615 | return Token(typeid, self._address, id), exposed |
| 616 | |
| 617 | def join(self, timeout=None): |
| 618 | ''' |
| 619 | Join the manager process (if it has been spawned) |
| 620 | ''' |
| 621 | if self._process is not None: |
| 622 | self._process.join(timeout) |
| 623 | if not self._process.is_alive(): |
| 624 | self._process = None |
| 625 | |
| 626 | def _debug_info(self): |
| 627 | ''' |
no test coverage detected