zxl
10 天以前 2bd4d8e3d31a47cf4b7c0c8a80f946af0d8fff6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.trigger;
 
/**
 * 延时任务执行器接口
 *
 * @author Chopper
 */
public interface TimeTriggerExecutor {
 
 
    /**
     * 执行任务
     *
     * @param object 任务参数
     */
    void execute(Object object);
 
}