Interface TimeWindow
-
public interface TimeWindow
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static TimeWindowcreateFixed(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)static TimeWindowcreateRolling(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)static TimeWindowcreateSmooth(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)booleanrecord()Records an invocation attempt.
-
-
-
Method Detail
-
record
boolean record()
Records an invocation attempt.- Returns:
- whether the invocation should be allowed
-
createFixed
static TimeWindow createFixed(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)
-
createRolling
static TimeWindow createRolling(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)
-
createSmooth
static TimeWindow createSmooth(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)
-
-