仪表盘
版本库
文件存储
活动
搜索
登录
SC
/
gfzl
广丰卷烟厂数采质量分析系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
style: 修改ignore
zhuguifei
7 天以前
6990c6f4934e6062b07f1fa9471c2b98d4077729
[SC/gfzl.git]
/
RuoYi-Vue-Plus
/
ruoyi-common
/
ruoyi-common-oss
/
src
/
main
/
java
/
org
/
dromara
/
common
/
oss
/
core
/
WriteOutSubscriber.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.dromara.common.oss.core;
import java.io.IOException;
/**
* 写出订阅器
*
* @author 秋辞未寒
*/
@FunctionalInterface
public interface WriteOutSubscriber<T> {
void writeTo(T out) throws IOException;
}