package com.izouma.nineth.annotations; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Debounce { String key(); long delay() default 200L; }