EventRun.java 335 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 package com.yanzuoguang.util.helper; /** * 执行的时候得事件处理类 * * @param <T> 需要处理的数据的类型 * @author 颜佐光 */ public interface EventRun<T> { /** * 事件的执行主体 * * @param t 接口 * @throws Exception 异常错误 */ void run(T t) throws Exception; }