I have done some research and not able to find any solution to delete or modify a message which is already present in a queue.(RabbitMQ).
Use case: I am trying to send notification by using delayed message feature (headers.put("x-delay", 5000)) in RabbitMQ(lets say after 30 mins). I want to send an event which can delete/modify the content of the message. Is there any way to do this in RabbitMQ.
Alternate approach is to use database and scheduler which i will implement if this is not possible.
Thanks in advance