I have a tool that uses Celery and RabbitMQ as the broker to dispatch jobs. In all workers I have a program with two tasks, A y B. I want B task to be executed after A and in the same worker. Should work like this:
- User invoke task A.
- Task A finalize and calls task B.
- Task B finalize and return results to the User.
Is this possible using Celery?