I have an XMPP chat bot which receives commands and replies to them. I have a task queue using Celery to process the commands, and I want the bot to reply when the commands return. However, I can't find a good way to execute a function whenever each task completes.
For example, something like this would be nice:
for result in queue.get_result():
send_message(result)
However, I can't find any info on how to do this. Does anyone know?