IFileInputStream.java 286 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.boco.nbd.wios.downloadfile.fileio;

import java.io.InputStream;

/**
 * @author haica
 */
public interface IFileInputStream {

	/**
	 * execute
	 * @param entity
	 * @param is
	 * @throws Exception
	 */
	void execute(FileIoEntity entity, InputStream is) throws Exception;
}