Class CircuitBreakerAntn
- java.lang.Object
-
- io.helidon.microprofile.faulttolerance.MethodAntn
-
- io.helidon.microprofile.faulttolerance.CircuitBreakerAntn
-
- All Implemented Interfaces:
Annotation
public class CircuitBreakerAntn extends MethodAntn implements org.eclipse.microprofile.faulttolerance.CircuitBreaker
Class CircuitBreakerAntn.
-
-
Constructor Summary
Constructors Constructor Description CircuitBreakerAntn(Class<?> beanClass, Method method)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
delay()
ChronoUnit
delayUnit()
Class<? extends Throwable>[]
failOn()
double
failureRatio()
int
requestVolumeThreshold()
int
successThreshold()
void
validate()
Validate the annotation on this method.-
Methods inherited from class io.helidon.microprofile.faulttolerance.MethodAntn
annotationType, getParamOverride, lookupAnnotation
-
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
annotationType, equals, hashCode, toString
-
-
-
-
Method Detail
-
validate
public void validate()
Description copied from class:MethodAntn
Validate the annotation on this method.- Specified by:
validate
in classMethodAntn
-
delay
public long delay()
-
delayUnit
public ChronoUnit delayUnit()
-
requestVolumeThreshold
public int requestVolumeThreshold()
-
failureRatio
public double failureRatio()
-
successThreshold
public int successThreshold()
-
-