Package org.springframework.core.retry


@NullMarked package org.springframework.core.retry
Main package for the core retry functionality.
  • Class
    Description
    Retryable is a functional interface that can be used to implement any generic block of code that can potentially be retried.
    Exception thrown when a RetryPolicy has been exhausted or interrupted.
    RetryListener defines a listener API for reacting to events published during the execution of a Retryable operation.
    Interface specifying basic retry operations.
    Strategy interface to define a retry policy.
    Fluent API for configuring a RetryPolicy with common configuration options.
    A representation of the current retry state, including the current retry count and the exceptions accumulated so far.
    A basic implementation of RetryOperations that executes and potentially retries a Retryable operation based on a configured RetryPolicy.