Causes on_shutdown signal Should be called before cleanup()
(self)
| 254 | |
| 255 | @asyncio.coroutine |
| 256 | def shutdown(self): |
| 257 | """Causes on_shutdown signal |
| 258 | |
| 259 | Should be called before cleanup() |
| 260 | """ |
| 261 | yield from self.on_shutdown.send(self) |
| 262 | |
| 263 | @asyncio.coroutine |
| 264 | def cleanup(self): |