Skip to content

TeamEnergetic/EventAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EventAPI

This is the event API that the Energetic client - and a lot of our other projects - use. It is designed to be somewhat similar to Bukkit's event API.

We like to think that it is reasonably good, stable, and fast, but if you have any improvements, feel free to submit a pull request.

You're free to use this in your own project as well, following the terms of the license - let us know if you do!

Documentation

Here are some simple examples. For more advanced usage, consult the code.

public class EventAPIExample {
    private final EventManager<Event> eventManager = new EventManager<>(Event.class);
    
    public void registerEvents() {
        this.eventManager.registerListener(new ListenerExample());
    }
    
    public void callSomeEvents() {
        MyEvent returned = this.eventManager.fireEvent(new MyEvent());
        if (returned.isCancelled()) {
            // do some behaviour
        }
    }
}

public class ListenerExample {
    // Handle an event
    @EventHandler
    public void onMyEvent(MyEvent evt) {
        evt.setCancelled(true);
    }
}

public class MyEvent extends Event {
    
}

lgpl logo

About

The Energetic event API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages