Calls the given callback on the next IOLoop iteration. As of Tornado 6.0, this method is equivalent to `add_callback`. .. versionadded:: 4.0
(self, callback: Callable, *args: Any, **kwargs: Any)
| 671 | raise NotImplementedError() |
| 672 | |
| 673 | def spawn_callback(self, callback: Callable, *args: Any, **kwargs: Any) -> None: |
| 674 | """Calls the given callback on the next IOLoop iteration. |
| 675 | |
| 676 | As of Tornado 6.0, this method is equivalent to `add_callback`. |
| 677 | |
| 678 | .. versionadded:: 4.0 |
| 679 | """ |
| 680 | self.add_callback(callback, *args, **kwargs) |
| 681 | |
| 682 | def add_future( |
| 683 | self, |