#1510 Fix comment length

This commit is contained in:
swarajsaaj 2020-10-11 00:11:06 +05:30
parent 7aea765dd1
commit b689fe0a26

View File

@ -24,9 +24,9 @@
package com.iluwatar.circuitbreaker;
/**
* 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.
* 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.
*/
public class DefaultCircuitBreaker implements CircuitBreaker {