@Retention(value=RUNTIME)
@Target(value=ANNOTATION_TYPE)
public static @interface SimpleEventListener.Marker
Mark a custom annotation type as event handler method marker.
For example user can define their own event system:
public enum MyEvent {
USER_LOGGED_IN,
USER_SIGNED_UP
}
And then user can define a custom event handler marker annotation type:
```
Copyright © 2014–2017 ActFramework. All rights reserved.