We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在node.9.5.0的中doWrite()的部分源码如下
doWrite()
if (writev)//_writev是批量写入数据,如果有就优先调用之 stream._writev(chunk, state.onwrite); else//否则调用默认的版本 stream._write(chunk, encoding, state.onwrite); state.sync = false;
_write和_writev的回调已经不叫next了,建议文章也同步修改一下
_write
_writev
next
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在node.9.5.0的中
doWrite()
的部分源码如下_write
和_writev
的回调已经不叫next
了,建议文章也同步修改一下The text was updated successfully, but these errors were encountered: