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

org.cg.eventbus.policy.CommitPolicy Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy