File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
spring-core/src/main/java/org/springframework/core/retry Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1818
1919import org .jspecify .annotations .Nullable ;
2020
21- import org .springframework .core .retry .support .CompositeRetryListener ;
22-
2321/**
2422 * {@code RetryListener} defines a <em>listener</em> API for reacting to events
2523 * published during the execution of a {@link Retryable} operation.
2624 *
27- * <p>Typically registered in a {@link RetryTemplate}, and can be composed using
28- * a {@link CompositeRetryListener}.
25+ * <p>Typically registered in a {@link RetryTemplate}, and can be composed using a
26+ * {@link org.springframework.core.retry.support.CompositeRetryListener CompositeRetryListener}.
2927 *
3028 * @author Mahmoud Ben Hassine
3129 * @author Sam Brannen
3230 * @author Juergen Hoeller
3331 * @since 7.0
34- * @see CompositeRetryListener
32+ * @see org.springframework.core.retry.support. CompositeRetryListener
3533 */
3634public interface RetryListener {
3735
Original file line number Diff line number Diff line change 2424import org .springframework .core .retry .RetryException ;
2525import org .springframework .core .retry .RetryListener ;
2626import org .springframework .core .retry .RetryPolicy ;
27- import org .springframework .core .retry .RetryTemplate ;
2827import org .springframework .core .retry .Retryable ;
2928import org .springframework .util .Assert ;
3029
3130/**
3231 * A composite implementation of the {@link RetryListener} interface, which is
33- * used to compose multiple listeners within a {@link RetryTemplate}.
32+ * used to compose multiple listeners within a
33+ * {@link org.springframework.core.retry.RetryTemplate RetryTemplate}.
3434 *
3535 * <p>Delegate listeners will be called in their registration order.
3636 *
You can’t perform that action at this time.
0 commit comments