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

io.github.dengchen2020.ratelimiter.annotation.RateLimitStrategy Maven / Gradle / Ivy

There is a newer version: 0.0.28
Show newest version
package io.github.dengchen2020.ratelimiter.annotation;

/**
 * 限流策略
 * @author dengchen
 * @since 2024/7/1
 */
public enum RateLimitStrategy {
    /**
     * 根据用户和method限流,默认选项,不可用时回退为ipAndMethod
     */
    userAndMethod,
    /**
     * 根据ip和method限流
     */
    ipAndMethod,
    /**
     * 根据用户限流,不可用时回退为ip
     */
    user,
    /**
     * 根据ip限流
     */
    ip,
    /**
     * 根据method限流
     */
    method
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy