org.cg.eventbus.IEventBusSerializer 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;
import kafka.serializer.Decoder;
import org.apache.kafka.common.serialization.Deserializer;
import org.apache.kafka.common.serialization.Serializer;
/**
* Combination of serializer and deseriliazer for producer and consumer
*
* to use it in event bus, create a default constructor.
*
* @author yanlinwang
*
*/
public interface IEventBusSerializer extends Serializer, Deserializer, Decoder{
}