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

com.swak.core.eventbus.EventHandler Maven / Gradle / Ivy

The newest version!
package com.swak.core.eventbus;

import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;

/**
 * EventHandler.java
 * 
 * @author colley.ma
 * @since 2.4.0
 **/
public interface EventHandler extends InitializingBean,DisposableBean {

	public void postEvent(Object event);
	
	public void register();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy