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

xyz.block.ftl.Retry Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
package xyz.block.ftl;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD })
public @interface Retry {
    int count() default 0;

    String minBackoff() default "";

    String maxBackoff() default "";

    String catchModule() default "";

    String catchVerb() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy