(self, respiter)
| 27 | raise NotImplementedError() |
| 28 | |
| 29 | def is_already_handled(self, respiter): |
| 30 | # some workers will need to overload this function to raise a StopIteration |
| 31 | return respiter == ALREADY_HANDLED |
| 32 | |
| 33 | def handle(self, listener, client, addr): |
| 34 | req = None |
no outgoing calls
no test coverage detected