All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rnorth.ducttape.circuitbreakers.State Maven / Gradle / Ivy

Go to download

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