\ Your worker subclass must arrange to have this method called once every ``self.timeout`` seconds. If you fail in accomplishing this task, the master process will murder your workers.
(self)
| 68 | return "<Worker %s>" % self.pid |
| 69 | |
| 70 | def notify(self): |
| 71 | """\ |
| 72 | Your worker subclass must arrange to have this method called |
| 73 | once every ``self.timeout`` seconds. If you fail in accomplishing |
| 74 | this task, the master process will murder your workers. |
| 75 | """ |
| 76 | self.tmp.notify() |
| 77 | |
| 78 | def run(self): |
| 79 | """\ |
no outgoing calls