forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
517 B
29 lines
517 B
package com.alibaba.excel.event; |
|
|
|
|
|
/** |
|
* 管理每个监听者 |
|
* |
|
* @author jipengfei |
|
*/ |
|
public interface AnalysisEventRegisterCenter { |
|
|
|
/** |
|
* 增加监听者 |
|
* @param name 名称 |
|
* @param listener 监听器 |
|
*/ |
|
void appendLister(String name, AnalysisEventListener listener); |
|
|
|
|
|
/** |
|
* 通知所有监听者 |
|
* @param event 事件 |
|
*/ |
|
void notifyListeners(OneRowAnalysisFinishEvent event); |
|
|
|
/** |
|
* 清空所有监听者 |
|
*/ |
|
void cleanAllListeners(); |
|
}
|
|
|