package com.yanzuoguang.util.thread;

import com.yanzuoguang.util.helper.EventRun;

/**
 * Runnable时间触发处理器
 *
 * @author 颜佐光
 */
public class RunExecute implements EventRun<Runnable> {
    /**
     * 执行时间
     *
     * @param t 接口 需要执行的对象
     */
    @Override
    public void run(Runnable t) {
        t.run();
    }
}