org.cg.eventbus.policy.CommitPolicy 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.policy;
import org.cg.eventbus.message.Message;
/**
*
* @author liang.li
*
*/
public abstract class CommitPolicy {
public CommitPolicy(){
}
abstract public boolean needCommit();
abstract public boolean needCommit(Message msg);
}