Class CircuitBreakerConfigImpl
- java.lang.Object
-
- io.smallrye.faulttolerance.config.CircuitBreakerConfigImpl
-
- All Implemented Interfaces:
Config,CircuitBreakerConfig,Annotation
public final class CircuitBreakerConfigImpl extends Object implements CircuitBreakerConfig
Automatically generated from theCircuitBreakerConfigconfig interface, do not modify.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Annotation>annotationType()Class<?>beanClass()static CircuitBreakerConfigImplcreate(FaultToleranceMethod method)longdelay()ChronoUnitdelayUnit()Class<? extends Throwable>[]failOn()doublefailureRatio()booleanisOnMethod()MethodDescriptormethod()intrequestVolumeThreshold()Class<? extends Throwable>[]skipOn()intsuccessThreshold()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.annotation.Annotation
equals, hashCode, toString
-
Methods inherited from interface io.smallrye.faulttolerance.config.CircuitBreakerConfig
validate
-
-
-
-
Method Detail
-
create
public static CircuitBreakerConfigImpl create(FaultToleranceMethod method)
-
method
public MethodDescriptor method()
-
annotationType
public Class<? extends Annotation> annotationType()
- Specified by:
annotationTypein interfaceAnnotation- Specified by:
annotationTypein interfaceConfig
-
isOnMethod
public boolean isOnMethod()
- Specified by:
isOnMethodin interfaceConfig
-
delay
public long delay()
-
delayUnit
public ChronoUnit delayUnit()
-
requestVolumeThreshold
public int requestVolumeThreshold()
-
failureRatio
public double failureRatio()
-
successThreshold
public int successThreshold()
-
-