Annotation Interface Throttled


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

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

    任意要素
    修飾子とタイプ
    任意要素
    説明
    boolean
    Returns true to invoke at the leading edge of the timeout.
    boolean
    Returns true to invoke at the trailing edge of the timeout.
  • 要素の詳細

    • interval

      int interval
      Returns number of milliseconds to throttle invocations to.
      戻り値:
      number of milliseconds to throttle invocations to
    • leading

      boolean leading
      Returns true to invoke at the leading edge of the timeout.
      戻り値:
      true to invoke at the leading edge of the timeout
      デフォルト:
      true
    • 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