异步问题
Open
- Dominant language
- Go
- Stars
- 7.8k
- Forks
- 1.3k
- PR merge metrics
- No merged PRs in 30d
Description
**async_op_result.go**
if aor.hasReturnedObj == 1 {
aor.doComplete()
}
改为
if atomic.LoadInt32(&aor.hasReturnedObj) == 1 {
aor.doComplete()
}
会不会更好
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.