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

com.github.thorbenkuck.keller.event.EventBus Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.keller.event;

public interface EventBus {

	static EventBus create() {
		return new NativeEventBus();
	}

	void setDispatcherStrategy(final DispatcherStrategy dispatcherStrategy);

	void setCreationStrategy(final DispatcherCreationStrategy creationStrategy);

	void register(final Object object);

	void unregister(final Object object);

	void post(final Object object);

	void clear();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy