Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Shutdown (1.55 sec)

  1. docs/es/docs/features.md

    * Soporte para **WebSocket**.
    * <abbr title="En español: tareas que se ejecutan en el fondo, sin frenar requests, en el mismo proceso. En ingles: In-process background tasks">Tareas en background</abbr>.
    * Eventos de startup y shutdown.
    * Cliente de pruebas construido con HTTPX.
    * **CORS**, GZip, Static Files, Streaming responses.
    * Soporte para **Session and Cookie**.
    * Cobertura de pruebas al 100%.
    * Base de código 100% anotada con tipos.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. docs/fa/docs/features.md

    * پشتیبانی از **WebSocket**.
    * <abbr title="In-process background tasks">تسک های درجریان در پس زمینه</abbr>.
    * <abbr title="Startup and shutdown events">رویداد های راه اندازی و متوفق شدن<abbr>.
    * تست کلاینت ساخته شده به روی HTTPX.
    * **CORS**, GZip, فایل های استاتیک, <abbr title="Streaming responses">پاسخ های جریانی</abbr>.
    * پشتیبانی از **نشست ها و کوکی ها**.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 15K bytes
    - Viewed (0)
  3. docs/tr/docs/features.md

    * **WebSocket** desteği.
    * **GraphQL** desteği.
    * Kullanım halinde arka plan işlevleri.
    * Başlatma ve kapatma eventleri(startup and shutdown).
    * Test sunucusu HTTPX üzerine kurulu.
    * **CORS**, GZip, Static dosyalar, Streaming responseları.
    * **Session and Cookie** desteği.
    * 100% test kapsayıcılığı.
    * 100% typeları belirtilmiş codebase.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ## 0.93.0
    
    ### Features
    
    * ✨ Add support for `lifespan` async context managers (superseding `startup` and `shutdown` events). Initial PR [#2944](https://github.com/tiangolo/fastapi/pull/2944) by [@uSpike](https://github.com/uSpike).
    
    Now, instead of using independent `startup` and `shutdown` events, you can define that logic in a single function with `yield` decorated with `@asynccontextmanager` (an async context manager).
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  5. fastapi/routing.py

                    """
                ),
            ] = None,
            on_shutdown: Annotated[
                Optional[Sequence[Callable[[], Any]]],
                Doc(
                    """
                    A list of shutdown event handler functions.
    
                    You should instead use the `lifespan` handlers.
    
                    Read more in the
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  6. fastapi/applications.py

                    """
                ),
            ] = None,
            on_shutdown: Annotated[
                Optional[Sequence[Callable[[], Any]]],
                Doc(
                    """
                    A list of shutdown event handler functions.
    
                    You should instead use the `lifespan` handlers.
    
                    Read more in the
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top