org.cg.eventbus.stream.IHandler 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.stream;
import kafka.message.MessageAndMetadata;
public interface IHandler {
void handle(MessageAndMetadata data, IReporter reporter);
}