com.biz.web.interceptor.accessLimit.AbstractAccessLimitCatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-all Show documentation
Show all versions of biz-all Show documentation
BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。
The newest version!
package com.biz.web.interceptor.accessLimit;
import java.util.concurrent.atomic.AtomicInteger;
/**
* 接口访问限制抽象类
*
* @author francis
* @since 1.0.1
**/
public abstract class AbstractAccessLimitCatch implements AccessLimitCatchService {
@Override
public AtomicInteger getAccessNumber(String addr, String requestUrl) {
return get(addr, requestUrl);
}
protected abstract AtomicInteger get(String addr, String requestUrl);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy