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

org.cg.eventbus.IEventBus Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
/**
 * 
 */
package org.cg.eventbus;

/**
 * @author yanlinwang
 *
 */
public interface IEventBus {

	// configurations

	/**
	 * Kafka only uses ZK in consumer config, the reason we expose this to
	 * common configuration is we will optionally auto create the topic in
	 * server kick off
	 */
	public static final String ZK_CONNECT = "zookeeper.connect";
	
	public static final String AUTO_CREATE = "autoCreate";
	
	

	// default configurations
	public static final String DEFAULT_PRO_ZK_CONNECT = "localhost:2181";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy