All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.operatorsdk.runtime.ExternalRetryConfiguration Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.operatorsdk.runtime;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigGroup;

@ConfigGroup
public interface ExternalRetryConfiguration {

    /**
     * How many times an operation should be retried before giving up
     */
    Optional maxAttempts();

    /**
     * The configuration of the retry interval.
     */
    ExternalIntervalConfiguration interval();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy