Should be overridden by subclasses to return a `tornado.web.Application` or other `.HTTPServer` callback.
(self)
| 458 | return HTTPServer(self._app, **self.get_httpserver_options()) |
| 459 | |
| 460 | def get_app(self) -> Application: |
| 461 | """Should be overridden by subclasses to return a |
| 462 | `tornado.web.Application` or other `.HTTPServer` callback. |
| 463 | """ |
| 464 | raise NotImplementedError() |
| 465 | |
| 466 | def fetch( |
| 467 | self, path: str, raise_error: bool = False, **kwargs: Any |