Conditions | 1 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | 1 | package io.mcarle.sciurus.retry; |
|
26 | @Around(value = "anyMethod() && retryAnnotated(retry)", argNames = "joinPoint,retry") |
||
27 | public Object executionOfAnyMethodAnnotatedWithRetry( |
||
28 | ProceedingJoinPoint joinPoint, |
||
29 | Retry retry |
||
30 | ) throws Throwable { |
||
31 | 1 | return RetryAspectHandler.executeAndRetry(joinPoint, retry); |
|
32 | } |
||
34 |