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

com.luhuiguo.fastdfs.proto.storage.DownloadCallback Maven / Gradle / Ivy

The newest version!
package com.luhuiguo.fastdfs.proto.storage;

import java.io.IOException;
import java.io.InputStream;

/**
 * 文件下载回调接口
 * 
 * @author tobato
 *
 * @param 
 */
public interface DownloadCallback {

    /**
     * 注意不能直接返回入参的InputStream,因为此方法返回后将关闭原输入流
     * 
     * 不能关闭ins? TODO验证是否可以关闭
     * 
     * @param ins
     * @throws IOException
     * @return
     */
    T recv(InputStream ins) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy