Create Project

This commit is contained in:
yanzg
2018-05-20 21:07:42 +08:00
commit ed711324ae
59 changed files with 5402 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.light.util;
/**
* 执行的时候得事件处理类
* @author Light
*
* @param <T> 接口
*/
public interface IEventExecute<T> {
/**
* 事件的执行主体
* @param t 接口
* @throws Exception 异常错误
*/
void Execute(T t) throws Exception;
}