Called by the serve_forever() loop. May be overridden by a subclass / Mixin to implement any code that needs to be run during the loop.
(self)
| 252 | self.__is_shut_down.wait() |
| 253 | |
| 254 | def service_actions(self): |
| 255 | """Called by the serve_forever() loop. |
| 256 | |
| 257 | May be overridden by a subclass / Mixin to implement any code that |
| 258 | needs to be run during the loop. |
| 259 | """ |
| 260 | pass |
| 261 | |
| 262 | # The distinction between handling, getting, processing and finishing a |
| 263 | # request is fairly arbitrary. Remember: |