eight
2024-08-06 f06d7fd046d32f74caf259f3ddbda0bcaf7de799
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.lihu.jh.framework.ratelimiter.core.keyresolver;
 
import cn.lihu.jh.framework.ratelimiter.core.annotation.RateLimiter;
import org.aspectj.lang.JoinPoint;
 
/**
 * 限流 Key 解析器接口
 *
 * @author 芋道源码
 */
public interface RateLimiterKeyResolver {
 
    /**
     * 解析一个 Key
     *
     * @param rateLimiter 限流注解
     * @param joinPoint  AOP 切面
     * @return Key
     */
    String resolver(JoinPoint joinPoint, RateLimiter rateLimiter);
 
}