okhttp3.internal.Util.closeAll()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(130)

本文整理了Java中okhttp3.internal.Util.closeAll()方法的一些代码示例,展示了Util.closeAll()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.closeAll()方法的具体详情如下:
包路径:okhttp3.internal.Util
类名称:Util
方法名:closeAll

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);
 }
}

相关文章