Debounce.java 229 B

123456789101112
  1. package com.izouma.nineth.annotations;
  2. import java.lang.annotation.*;
  3. @Target(ElementType.METHOD)
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @Documented
  6. public @interface Debounce {
  7. String key();
  8. long delay() default 200L;
  9. }