Should be overridden by subclasses to return a `tornado.web.Application` or other `.HTTPServer` callback.
(self)
| 398 | return HTTPServer(self._app, **self.get_httpserver_options()) |
| 399 | |
| 400 | def get_app(self) -> Application: |
| 401 | """Should be overridden by subclasses to return a |
| 402 | `tornado.web.Application` or other `.HTTPServer` callback. |
| 403 | """ |
| 404 | raise NotImplementedError() |
| 405 | |
| 406 | def fetch( |
| 407 | self, path: str, raise_error: bool = False, **kwargs: Any |