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

com.lmaye.cloud.starter.canal.handler.EntryHandler Maven / Gradle / Ivy

package com.lmaye.cloud.starter.canal.handler;

/**
 * -- EntryHandler
 *
 * @author Lmay Zhou
 * @date 2021/3/22 11:27
 * @email [email protected]
 */
public interface EntryHandler {
    /**
     * DDL操作
     *
     * @param sql DDL SQL语句
     */
    void ddlEvent(String sql);

    /**
     * 新增
     *
     * @param t Object
     */
    void insert(T t);

    /**
     * 修改
     *
     * @param before Object
     * @param after  Object
     */
    void update(T before, T after);

    /**
     * 删除
     *
     * @param t Object
     */
    void delete(T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy