Class RetryAntn
- java.lang.Object
-
- io.helidon.microprofile.faulttolerance.MethodAntn
-
- io.helidon.microprofile.faulttolerance.RetryAntn
-
- All Implemented Interfaces:
Annotation
public class RetryAntn extends MethodAntn implements org.eclipse.microprofile.faulttolerance.Retry
Class RetryAntn.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Throwable>[]
abortOn()
long
delay()
ChronoUnit
delayUnit()
ChronoUnit
durationUnit()
long
jitter()
ChronoUnit
jitterDelayUnit()
long
maxDuration()
int
maxRetries()
Class<? extends Throwable>[]
retryOn()
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
-
maxRetries
public int maxRetries()
-
delay
public long delay()
-
delayUnit
public ChronoUnit delayUnit()
-
maxDuration
public long maxDuration()
-
durationUnit
public ChronoUnit durationUnit()
-
jitter
public long jitter()
-
jitterDelayUnit
public ChronoUnit jitterDelayUnit()
-
-