async-signals icon indicating copy to clipboard operation
async-signals copied to clipboard

Async version of the Django signals class - for usage in for example FastAPI.

Results 2 async-signals issues
Sort by recently updated
recently updated
newest added

Currently we just copied what Django had. But I think we can remove the lock.

Allow receivers to run in the background by just adding the task to the event loop queue, but not `await`ing it. Could do something similar to https://fastapi.tiangolo.com/tutorial/background-tasks/. Note: Background tasks...