We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aea765 commit b689fe0Copy full SHA for b689fe0
1 file changed
circuit-breaker/src/main/java/com/iluwatar/circuitbreaker/DefaultCircuitBreaker.java
@@ -24,9 +24,9 @@
24
package com.iluwatar.circuitbreaker;
25
26
/**
27
- * The delay based Circuit breaker implementation that works in a CLOSED->OPEN-(retry_time_period)->HALF_OPEN->CLOSED
28
- * flow with some retry time period for failed services and a failure threshold for service to open
29
- * circuit.
+ * The delay based Circuit breaker implementation that works in a
+ * CLOSED->OPEN-(retry_time_period)->HALF_OPEN->CLOSED flow with some retry time period for failed
+ * services and a failure threshold for service to open circuit.
30
*/
31
public class DefaultCircuitBreaker implements CircuitBreaker {
32
0 commit comments