Instance method called when an IOLoop ceases to be current. May be overridden by subclasses as a counterpart to make_current.
(self)
| 328 | old._clear_current_hook() |
| 329 | |
| 330 | def _clear_current_hook(self) -> None: |
| 331 | """Instance method called when an IOLoop ceases to be current. |
| 332 | |
| 333 | May be overridden by subclasses as a counterpart to make_current. |
| 334 | """ |
| 335 | pass |
| 336 | |
| 337 | @classmethod |
| 338 | def configurable_base(cls) -> Type[Configurable]: |