Missing delay function for retry documentation. #7357
fudom
started this conversation in
Report issues other than bug
Replies: 1 comment
-
Also want to add that documentation totally lacks counter description for delay function, internet examples equally suggest that it starts either from 0 or from 1. We had an issue here, only debug with console log showed that it starts with 1. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be great if we find something about
delay
option with a function for the retry operator. Especially since retryWhen is deprecated. The example should explain how to use the delay function and correct return value in conditional context likeretryWhen
. Currently there is only one example with simpleretry(2)
. And in the deprecated info ofretryWhen
where is onlyretry({ delay: () => notify$ })
. Background: I need to migrate an Angular HTTP interceptor for conditional state error handling where no retry is needed. In my opinion it is very important to show such examples, especially when good things from RXJS suddenly become deprecated.Beta Was this translation helpful? Give feedback.
All reactions