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

cn.yueshutong.springbootstartercurrentlimiting.annotation.CurrentLimiter Maven / Gradle / Ivy

There is a newer version: 0.1.1.RELEASE
Show newest version
package cn.yueshutong.springbootstartercurrentlimiting.annotation;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
@Inherited
public @interface CurrentLimiter {

    double QPS() default 20;

    long initialDelay() default 0;

    boolean failFast() default true;

    boolean overflow() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy