com.bixuebihui.jdbc.event.AfterChangeEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c-dbtools Show documentation
Show all versions of c-dbtools Show documentation
a fast small database connection pool and a active record flavor mini framework
package com.bixuebihui.jdbc.event;
/**
* @author xwx
*/
public interface AfterChangeEventHandler {
void afterChange(T info, ChangeType changeType);
void afterChange(T info, ChangeType changeType, String shardTableName);
void afterChange(T[] infos, ChangeType changeType);
void afterChange(String query, Object[] param, ChangeType changeType);
void afterChange(String query, Object[] param, ChangeType changeType, String shardTableName);
void afterChangeByKey(ID id, ChangeType changeType);
void afterChangeByKey(ID[] id, ChangeType changeType);
}