zrj
2024-07-03 0b1e9e70818f0e3eb32dd6c029d42d93236ecdc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.springblade.binlog.listener;
 
import org.springblade.binlog.vo.BinLogItem;
 
/**
 * BinLogListener监听器
 *
 * @author zrj
 * @since 2024/02/19
 **/
@FunctionalInterface
public interface BinLogListener {
 
    void onEvent(BinLogItem item);
}