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
Some kind of construct flow would be very useful for a couple of significant reasons:
Arguments for doing it all inline could be getting pretty long (and very variable), not even counting the first point:
pull(status_type, error, buffer, size, offset)
Maybe?
Idk, maybe separating this all out into multiple flows would be better, similar to Streams3 but just sans the dreaded EventEmitter.
construct(...)
ready(...)
pull(...)
give(...)
destroy(error)
Very related to nodejs/node#29314
The text was updated successfully, but these errors were encountered:
I'll chime in a link to related PR in Node nodejs/node#29656.
Sorry, something went wrong.
No branches or pull requests
Some kind of construct flow would be very useful for a couple of significant reasons:
Arguments for doing it all inline could be getting pretty long (and very variable), not even counting the first point:
Maybe?
Idk, maybe separating this all out into multiple flows would be better, similar to Streams3 but just sans the dreaded EventEmitter.
construct(...)
->ready(...)
pull(...)
->give(...)
destroy(error)
->destroy(error)
Very related to nodejs/node#29314
The text was updated successfully, but these errors were encountered: