Start concurrent execution
(self)
| 31 | self.send(ActorExit) |
| 32 | |
| 33 | def start(self): |
| 34 | ''' |
| 35 | Start concurrent execution |
| 36 | ''' |
| 37 | self._terminated = Event() |
| 38 | t = Thread(target=self._bootstrap) |
| 39 | t.daemon = True |
| 40 | t.start() |
| 41 | |
| 42 | def _bootstrap(self): |
| 43 | try: |
no outgoing calls
no test coverage detected