linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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);
}