Class SystemReadyEvent
java.lang.Object
net.clementraynaud.skoice.common.api.events.system.SystemReadyEvent
- All Implemented Interfaces:
SkoiceEvent
Called when the proximity voice chat system becomes ready.
This event is fired when proximity voice chat starts running. After this event,
SkoiceAPI.isSystemReady() will return true.
This event is useful for performing tasks that should only occur when proximity chat is active, such as enforcing voice chat requirements.
Example usage:
eventBus.subscribe(SystemReadyEvent.class, event -> {
// Proximity chat is now running
});
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
SystemReadyEvent
public SystemReadyEvent()
-