本文整理了Java中okhttp3.internal.Util.closeAll()
方法的一些代码示例,展示了Util.closeAll()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.closeAll()
方法的具体详情如下:
包路径:okhttp3.internal.Util
类名称:Util
方法名:closeAll
[英]Closes a and b. If either close fails, this completes the other close and rethrows the first encountered exception.
[中]关闭a和b。如果其中一个关闭失败,则完成另一个关闭,并重新执行遇到的第一个异常。
代码示例来源:origin: duzechao/OKHttpUtils
@Override public synchronized void close() throws IOException {
closed = true;
Util.closeAll(sink, headerBlockOut);
}
}
代码示例来源:origin: huxq17/SwipeCardsView
@Override public synchronized void close() throws IOException {
closed = true;
Util.closeAll(sink, headerBlockOut);
}
}
代码示例来源:origin: huxq17/tractor
@Override public synchronized void close() throws IOException {
closed = true;
Util.closeAll(sink, headerBlockOut);
}
}
内容来源于网络,如有侵权,请联系作者删除!