You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The semantics of flush is a little unclear to me, i.e. when I call flush(cb) I'd expect that all data that I have write(chunk) would be flushed when cb is invoked. However, unlike flushSync this is not the case. flush doesn't actually flush the buffer to the worker, it just waits for whatever already has been flushed to worker is done.
The text was updated successfully, but these errors were encountered:
The semantics of flush is a little unclear to me, i.e. when I call
flush(cb)
I'd expect that all data that I havewrite(chunk)
would be flushed whencb
is invoked. However, unlikeflushSync
this is not the case.flush
doesn't actually flush the buffer to the worker, it just waits for whatever already has been flushed to worker is done.The text was updated successfully, but these errors were encountered: