I'm using Amazon AWS Managed ActiveMQ with a .NET Core project. We use Amqp.NET Lite to connect and communicate using the queue.
Now I'm trying to implement management of unprocessable message. What I essencially need is to tell the queue to send the message after a specified time or a later specific time. Is that possible using Amqp.NET Lite. I couldn't find documentation that cover this.
To my best understanding of this documentation, what I understood is that I'm supposed to setup the redelivery as a configuration at the ActiveMQ Console. Is that the case? If so is there a way I can do this without knowing when should I redeliver this? A time the application's IReceiverLink can specify on rejecting the message?