We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b9b82 commit 204d17cCopy full SHA for 204d17c
1 file changed
src/main/java/fr/aimcvent/handler/api/Handler.java
@@ -10,6 +10,10 @@ public interface Handler<E extends Event, T> {
10
11
void handle(E event);
12
13
+ default int priority() {
14
+ return 0;
15
+ }
16
+
17
HandlerCondition<E, T> condition();
18
19
}
0 commit comments