All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anysoft.batch.Process Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.batch;

import com.anysoft.util.DefaultProperties;

/**
 * YARN 处理进程 
 * 
 * @author duanyy
 *
 */
public interface Process {
	/**
	 * 初始化进程
	 * 
	 * @param p 初始化变量集
	 * @return 0表示初始化成功,反之则失败
	 */
	public int init(DefaultProperties p);
	
	/**
	 * 运行进程
	 * @return 0表示初始化成功,反之则失败
	 */
	public int run();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy