Package com.velocitypowered.api.event
Annotation Type Subscribe
-
@Retention(RUNTIME) @Target(METHOD) public @interface Subscribe
An annotation that indicates that this method can be used to listen for an event from the proxy.
-
-
-
async
boolean async
Whether the handler must be called asynchronously.If this method returns
true, the method is guaranteed to be executed asynchronously. Otherwise, the handler may be executed on the current thread or asynchronously. This still means you must consider thread-safety in your event listeners as the "current thread" can and will be different each time.If any method handler targeting an event type is marked with
true, then every handler targeting that event type will be executed asynchronously.- Returns:
- Requires async
- Default:
- false
-
-