linwe
2024-07-05 fee8fbb72f73cc11075b07bf457ce2dd2a9ce19e
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);
}