com.alogic.blob.core.BlobWriter 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.OutputStream;
/**
* BlobWriter
* @author duanyy
* @since 1.6.3.28
*
* @version 1.6.3.32 [duanyy 20150720]
* - 增加md5,content-type等信息
*/
public interface BlobWriter{
/**
* 获取输出流
* @return 输出流
*/
public OutputStream getOutputStream();
/**
* 获取BlobInfo
* @return BlobInfo
*/
public BlobInfo getBlobInfo();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy