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