My current understanding is that Polly will retry the code to execute based on the policy defined.
What I would like to do is to have Polly work based on a ServiceBus message, so I'd provide the retry count to Polly and it would choose the appropriate behaviour based on policy - I could then repost the message with the appropriate properties (message id, retry count, the date/time the message becomes valid from).
For example, my retry policy would be to wait for 10 seconds (3 times), and then try every hour (12 times), and then deadletter.
I can't find anything that tells me if this is possible or not. Is this something Polly supports?