作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码是线程安全的吗?如果是这样,如何保证ByteBuffer
的安全发布?执行 CompletionHandler
的线程的实例?
AsynchronousSocketChannel channel = ...
ByteBuffer buf = ByteBuffer.allocate(1024);
channel.read(buf, null, new CompletionHandler<Integer, Void>() {
//"completed" can be executed by a different thread than channel.read()
public void completed(Integer result, Void attachment) {
buf.flip(); //Can buf be safely accessed here? If so, why?
//...
}
public void failed(Throwable exc, Void attachment) {
//...
}
});
最佳答案
我在 javadocs 中没有看到任何关于 ByteBuffer
的内部状态的明确保证,用于 read()
操作,在内部可见 CompletionHandler
read()
时调用完成。
所以没有100%的保证。
但我想说,期望这是真的是常识。
仅仅是因为:
CompletionHandler
很正常查看“read()”所做的更改CompletionHandler
可以在不同的线程中异步运行 — 是 read()
的详细信息的内部实现。结果是 read()
担心确保在这种情况下可以安全地发布该内容。 关于java - NIO2 CompletionHandler 的线程安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68936041/
我是一名优秀的程序员,十分优秀!