RunProcess.java 220 Bytes
Newer Older
yanzg's avatar
yanzg committed
1 2 3 4
package com.yanzuoguang.util.thread;

/**
 * 运行进度处理
yanzg's avatar
yanzg committed
5
 * @author 颜佐光
yanzg's avatar
yanzg committed
6 7 8 9 10 11 12 13 14 15
 */
public interface RunProcess {

    /**
     * 进度信息
     *
     * @param data
     */
    void execute(ProcessData data);
}