
alluxio.shaded.client.net.jodah.failsafe.internal.ClosedState Maven / Gradle / Ivy
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in alluxio.shaded.client.com.liance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.alluxio.shaded.client.org.licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package alluxio.shaded.client.net.jodah.failsafe.internal;
import alluxio.shaded.client.net.jodah.failsafe.CircuitBreaker;
import alluxio.shaded.client.net.jodah.failsafe.CircuitBreaker.State;
import alluxio.shaded.client.net.jodah.failsafe.ExecutionContext;
public class ClosedState extends CircuitState {
private final CircuitBreakerInternals internals;
public ClosedState(CircuitBreaker breaker, CircuitBreakerInternals internals) {
super(breaker, CircuitStats.create(breaker, capacityFor(breaker), true, null));
this.internals = internals;
}
@Override
public boolean allowsExecution() {
return true;
}
@Override
public State getState() {
return State.CLOSED;
}
@Override
public synchronized void handleConfigChange() {
stats = CircuitStats.create(breaker, capacityFor(breaker), true, stats);
}
/**
* Checks to see if the the executions and failure thresholds have been exceeded, opening the circuit if so.
*/
@Override
synchronized void checkThreshold(ExecutionContext context) {
// Execution threshold will only be set for time based thresholding
if (stats.getExecutionCount() >= breaker.getFailureExecutionThreshold()) {
double failureRateThreshold = breaker.getFailureRateThreshold();
if ((failureRateThreshold != 0 && stats.getFailureRate() >= failureRateThreshold) || (failureRateThreshold == 0
&& stats.getFailureCount() >= breaker.getFailureThreshold()))
internals.open(context);
}
}
/**
* Returns the capacity of the breaker in the closed state.
*/
private static int capacityFor(CircuitBreaker> breaker) {
if (breaker.getFailureExecutionThreshold() != 0)
return breaker.getFailureExecutionThreshold();
else
return breaker.getFailureThresholdingCapacity();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy