Annotation Interface Debounced


@Documented @Target(METHOD) @Retention(RUNTIME) public @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.
関連項目:
  • 必須要素の概要

    必須要素
    修飾子とタイプ
    必須要素
    説明
    int
    Returns number of milliseconds to delay.
  • 任意要素の概要

    任意要素
    修飾子とタイプ
    任意要素
    説明
    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 interval
      Returns number of milliseconds to delay.
      戻り値:
      number of milliseconds to delay
    • leading

      boolean leading
      Returns true to invoke at the leading edge of the timeout.
      戻り値:
      true to invoke at the leading edge of the timeout
      デフォルト:
      false
    • trailing

      boolean trailing
      Returns true to invoke at the trailing edge of the timeout.
      戻り値:
      true to invoke at the trailing edge of the timeout
      デフォルト:
      true
    • maxInterval

      int maxInterval
      Returns 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