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;
}