Reputation: 715
I know there is a delay option in messages.
But I need this scenario:
How can I do something like that?
Upvotes: 0
Views: 194
Reputation: 97718
From the information you've provided, this could just be part of the task processing callback in your application:
sleep(30)
or whatever the equivalent is in your programming language of choiceAs long as your entire callback operates synchronously in a single thread, the next task won't be processed until it returns.
Upvotes: 2