@java.lang.annotation.Target(ElementType.TYPE) @java.lang.annotation.Retention(RetentionPolicy.RUNTIME) public @interface ListenerConfiguration
Marks a class as a listener to be registered by the plugin/module loader.
Type | Name and Description |
---|---|
int |
runPriority A number indicating the order in which listeners should be executed. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
A number indicating the order in which listeners should be executed. A higher value indicates it will be executed earlier. Listeners are only ordered relative to other listeners of the same type.