- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for onShutdown (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
fastapi/routing.py
async def _shutdown(self) -> None: """ Run any `.on_shutdown` event handlers. This method is kept for backward compatibility after Starlette removed support for on_startup/on_shutdown handlers. Ref: https://github.com/Kludex/starlette/pull/3117 """ for handler in self.on_shutdown: if is_async_callable(handler): await handler()
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 193K bytes - Click Count (0) -
fastapi/applications.py
routes=routes, redirect_slashes=redirect_slashes, dependency_overrides_provider=self, on_startup=on_startup, on_shutdown=on_shutdown, lifespan=lifespan, default_response_class=default_response_class, dependencies=dependencies, callbacks=callbacks, deprecated=deprecated,Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 178.6K bytes - Click Count (0)