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

com.cookingfox.rxbus_eventbus.RxBusEmitter Maven / Gradle / Ivy

The newest version!
package com.cookingfox.rxbus_eventbus;

/**
 * Operations for emitting events.
 */
public interface RxBusEmitter {

    /**
     * Emit an event object to all observers.
     *
     * @param event The event.
     */
     void emit(T event);

    /**
     * Alias for {@link #emit(Object)}.
     *
     * @see #emit(Object)
     */
     void post(T event);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy