
com.cookingfox.rxbus_eventbus.RxBusEmitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxbus-eventbus-java Show documentation
Show all versions of rxbus-eventbus-java Show documentation
A simple EventBus using RX Java
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