I have azure webjob triggers from azure queue. i don't want to dequeue message on some specific condition, and i would like to process that message after some time for example (5 minutes) is it possible to prevent dequeue message ?
0
votes
You can not read message without dequeuing it. You should use another queue for that specific condition. you can dequeue message from first queue and insert in into another queue for that specific condition.
- Vivek Mishra
use peekmessage() insted of getmessage() so that way you can read messages without dequeuing it
- vivek kv