
org.rnorth.ducttape.circuitbreakers.State Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duct-tape Show documentation
Show all versions of duct-tape Show documentation
General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results)
The newest version!
package org.rnorth.ducttape.circuitbreakers;
/**
* @author richardnorth
*/
public enum State {
/**
* The breaker is OK, i.e. trying to perform requested primary actions.
*/
OK,
/**
* The breaker is broken, i.e. avoiding calling primary actions, and falling straight through to the fallback actions.
*/
BROKEN
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy