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

com.scudata.dm.op.IPipe Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

The newest version!
package com.scudata.dm.op;

import com.scudata.dm.Context;
import com.scudata.dm.Sequence;

/**
 * ?ܵ??ӿ?
 * @author RunQian
 *
 */
public interface IPipe {
	/**
	 * ???ܵ?????????
	 * @param seq ????
	 * @param ctx ??????????
	 */
	void push(Sequence seq, Context ctx);
	
	/**
	 * ???????ͽ???
	 * @param ctx
	 */
	void finish(Context ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy