We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
task.apply
make able to call tasks asynchronously as follows (based on Celery tasks apply function):
apply
from fast_agave.tasks import task # Task definition @task(QUEUE_NAME=...) async def my_task(message: Dict) -> None: ... # task invocation my_task.apply(dict(foo='bar'))
apply function should create a asyncio.Task and submit the the message to the queue associated in the task definition so we can do "fire and forget"
asyncio.Task
The text was updated successfully, but these errors were encountered:
felipao-mx
No branches or pull requests
make able to call tasks asynchronously as follows (based on Celery tasks
apply
function):apply
function should create aasyncio.Task
and submit the the message to the queue associated in the task definition so we can do "fire and forget"The text was updated successfully, but these errors were encountered: