feat[graalvm]: event graalvm support

This commit is contained in:
godotg
2023-09-02 09:27:20 +08:00
parent e11bb464d8
commit 06d49e7bd4
@@ -12,6 +12,8 @@
*/
package com.zfoo.event.model.anno;
import org.springframework.aot.hint.annotation.Reflective;
import java.lang.annotation.*;
/**
@@ -23,6 +25,7 @@ import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Reflective
public @interface EventReceiver {
Bus value() default Bus.CurrentThread;
}