It seems that .NET Standard Azure ServiceBus client library doesn't have exposed possibility to set DeltaBackoff
parameter. It was possible before, based on documentation it should be still possible. I see there is an internal constructor which is chained to the public one and value for DeltaBackoff
is passed from Constants.DefaultRetryDeltaBackoff
(3 seconds).
Is there a valid reason to not expose that anymore? Also, is there a way to achieve exponential retries using SubscriptionClient
with 2/4/8 minutes delay without setting DeltaBackoff
?