All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cookingfox.eventbus.EventBusPublisher Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.cookingfox.eventbus;

/**
 * Gives the implementing class the ability to post events on the EventBus.
 */
public interface EventBusPublisher {

    /**
     * Posts the given event to the EventBus.
     *
     * @param event An event object.
     */
    void post(Object event);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy