guoshilong
2024-02-19 fada4b3ee4fbae5f82dba72fe8ad175a724d9cf7
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);
}