org.cg.eventbus.parser.MessageParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.cg.eventbus Show documentation
Show all versions of org.cg.eventbus Show documentation
Simplified messaging programming model with kafka implementation.
package org.cg.eventbus.parser;
import org.apache.commons.configuration.Configuration;
import org.cg.eventbus.message.Message;
/**
*
* @author liang.li
*
* @param
*/
public abstract class MessageParser {
public MessageParser(Configuration config) {
}
abstract public V parser(Message msg) throws Exception;
}