package cn.iocoder.yudao.framework.ratelimiter.core.keyresolver;
|
|
import cn.iocoder.yudao.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);
|
|
}
|