Class RetryService
java.lang.Object
org.eclipse.microprofile.fault.tolerance.tck.retry.exception.hierarchy.RetryService
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
RetryService
public RetryService()
-
-
Method Details
-
serviceA
@Retry(retryOn={E0.class,E2.class}, abortOn=E1.class, maxRetries=1) public void serviceA(Throwable exception) throws Throwable - Throws:
Throwable
-
serviceB
@Retry(retryOn={java.lang.Exception.class,E1.class}, abortOn={E0.class,E2.class}, maxRetries=1) public void serviceB(Throwable exception) throws Throwable - Throws:
Throwable
-
serviceC
@Retry(retryOn={E1.class,E2.class}, abortOn=E0.class, maxRetries=1) public void serviceC(Throwable exception) throws Throwable - Throws:
Throwable
-
getStatus
-