com.alogic.blob.core.BlobReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alogic-blob Show documentation
Show all versions of alogic-blob Show documentation
BLOB(binary large object),二进制大对象存储框架
package com.alogic.blob.core;
import java.io.InputStream;
/**
* BlobReader
*
* @author duanyy
* @since 1.6.3.28
*
* @version 1.6.3.32 [duanyy 20150720]
* - 增加md5,content-type等信息
*/
public interface BlobReader{
/**
* 获取输入流
* @param offset 读入的起始位置
* @return 输入流
*/
public InputStream getInputStream(long offset);
/**
* 获取BlobInfo
* @return BlobInfo
*/
public BlobInfo getBlobInfo();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy