
top.javatool.canal.client.factory.IModelFactory Maven / Gradle / Ivy
The newest version!
package top.javatool.canal.client.factory;
import top.javatool.canal.client.handler.EntryHandler;
import java.util.Set;
/**
* @author yang peng
* @date 2019/3/2916:45
*/
public interface IModelFactory {
R newInstance(EntryHandler entryHandler, T t) throws Exception;
default R newInstance(EntryHandler entryHandler, T t, Set updateColumn) throws Exception {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy