zhongrj
2024-04-28 ebd41b7b2e44dc8b96f177d7bf88d2f5f997b75c
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);
}