Causes on_cleanup signal Should be called after shutdown()
(self)
| 262 | |
| 263 | @asyncio.coroutine |
| 264 | def cleanup(self): |
| 265 | """Causes on_cleanup signal |
| 266 | |
| 267 | Should be called after shutdown() |
| 268 | """ |
| 269 | yield from self.on_cleanup.send(self) |
| 270 | |
| 271 | @asyncio.coroutine |
| 272 | def finish(self): |