CircuitBreakerConfig#slidingWindowSize java docs modification
See original GitHub issueIt seems like the Java docs of the, in the title mentioned method, contains some copy-paste lines from the CircuitBreakerConfig#slidingWindow
method. Specifically the lines where {@code ...}
mentions method parameters which aren’t present. Is that correct? If that’s the case, I’ll gladly open a PR adjusting the docs.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
CircuitBreakerConfig.Builder (resilience4j-circuitbreaker 1.5.0 ...
Configures the size of the sliding window which is used to record the outcome of calls when the CircuitBreaker is closed. CircuitBreakerConfig.
Read more >CircuitBreaker - resilience4j
The count-based sliding window is implemented with a circular array of N measurements. If the count window size is 10, the circular array...
Read more >Not possible to change minimum amount of recorded requests ...
Hi,. you can still configure minimumNumberOfCalls if you are using SlidingWindowType.TIME_BASED to reduce the minimum number of calls per ...
Read more >Resilience4j Configuration - Apache Camel
Contents ; slidingWindowSize. Configures the size of the sliding window which is used to record the outcome of calls when the CircuitBreaker is...
Read more >Why to use Circuit Breaker Pattern? - pankajtechblogs
Retry just looks for the api call to succeed, while circuit breaker will ... CircuitBreaker uses a sliding window to store and aggregate...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
With pleasure. Thank you and every contributor for such a great library! 😉
Hi @hexmind & @RobWin . Yes, sure, will review and modify them in a PR tomorrow after work.