package org.unbrokendome.eventbus; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Subscribe { boolean async() default false; }