Annotation Interface Throttled
Makes methods annotated with a
Decoratable
annotation throttled methods.
Throttled methods are invoked at most once per every interval()
milliseconds.
A throttled method is invoked with the last arguments provided to it.
Subsequent calls to a throttled method return the result of the last method invocation.-
必須要素の概要
必須要素 -
任意要素の概要
任意要素
-
要素の詳細
-
interval
int intervalReturns number of milliseconds to throttle invocations to.- 戻り値:
- number of milliseconds to throttle invocations to
-
-
-
leading
boolean leadingReturns true to invoke at the leading edge of the timeout.- 戻り値:
- true to invoke at the leading edge of the timeout
- デフォルト:
- true
-
trailing
boolean trailingReturns true to invoke at the trailing edge of the timeout.- 戻り値:
- true to invoke at the trailing edge of the timeout
- デフォルト:
- true
-