Invoked before the first request is received. Subclasses can add their initialization code here.
(self)
| 22 | self.json = self.server.packet_class.json # use the global JSON module |
| 23 | |
| 24 | def initialize(self): |
| 25 | """Invoked before the first request is received. Subclasses can add |
| 26 | their initialization code here. |
| 27 | """ |
| 28 | pass |
| 29 | |
| 30 | def get_namespaces(self): |
| 31 | """Return an iterable with the active namespace names.""" |
no outgoing calls