Method to be run in sub-process; can be overridden in sub-class
(self)
| 101 | raise ValueError("process object is closed") |
| 102 | |
| 103 | def run(self): |
| 104 | ''' |
| 105 | Method to be run in sub-process; can be overridden in sub-class |
| 106 | ''' |
| 107 | if self._target: |
| 108 | self._target(*self._args, **self._kwargs) |
| 109 | |
| 110 | def start(self): |
| 111 | ''' |