Annotation Interface Debounced
Makes methods annotated with a
Decoratable
annotation debounced methods.
Debounced methods are delayed to be invoked until after interval()
milliseconds have elapsed
since the last time the debounced method were invoked.
A debounced method is invoked with the last arguments provided to it.
Subsequent calls to a debounced method return the result of the last method invocation.-
必須要素の概要
必須要素 -
任意要素の概要
任意要素修飾子とタイプ任意要素説明boolean
Returns true to invoke at the leading edge of the timeout.int
Returns maximum time a method is allowed to be delayed before it's invoked.boolean
Returns true to invoke at the trailing edge of the timeout.
-
要素の詳細
-
interval
int intervalReturns number of milliseconds to delay.- 戻り値:
- number of milliseconds to delay
-
-
-
leading
boolean leadingReturns true to invoke at the leading edge of the timeout.- 戻り値:
- true to invoke at the leading edge of the timeout
- デフォルト:
- false
-
trailing
boolean trailingReturns true to invoke at the trailing edge of the timeout.- 戻り値:
- true to invoke at the trailing edge of the timeout
- デフォルト:
- true
-
maxInterval
int maxIntervalReturns maximum time a method is allowed to be delayed before it's invoked.- 戻り値:
- maximum time a method is allowed to be delayed before it's invoked
- デフォルト:
- -1
-