Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement lifespan middleware #4

Closed
florimondmanca opened this issue Sep 27, 2019 · 0 comments · Fixed by #9
Closed

Implement lifespan middleware #4

florimondmanca opened this issue Sep 27, 2019 · 0 comments · Fixed by #9

Comments

@florimondmanca
Copy link
Owner

florimondmanca commented Sep 27, 2019

Provides startup/shutdown event handler registration, and an implementation in reaction to lifespan ASGI messages.

Proposed API:

from asgi_lifespan import Lifespan, LifespanMiddleware

# Standalone lifespan ASGI app.
lifespan = Lifespan()


# Decorator syntax:

@lifespan.on_event("startup")
async def startup():
    pass

@lifespan.on_event("shutdown")
async def shutdown():
    pass


# Imperative syntax:

async def extra_startup():
    pass

lifespan.add_event_handler("startup", extra_startup)


# Wrapping an app:
app: "ASGIApp"
app = LifespanMiddleware(app, lifespan=lifespan)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant