Interface RateLimiterService
-
- All Known Implementing Classes:
RateLimiterServiceImpl
public interface RateLimiterService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrunByCount(java.util.concurrent.Callable<CommonResponse> callable, int count, java.io.File outFile)voidrunBySeconds(java.util.concurrent.Callable<CommonResponse> callable, int seconds, java.io.File outFile)
-
-
-
Method Detail
-
runByCount
void runByCount(java.util.concurrent.Callable<CommonResponse> callable, int count, java.io.File outFile) throws java.lang.InterruptedException
- Throws:
java.lang.InterruptedException
-
runBySeconds
void runBySeconds(java.util.concurrent.Callable<CommonResponse> callable, int seconds, java.io.File outFile) throws java.lang.InterruptedException
- Throws:
java.lang.InterruptedException
-
-