Closed
Description
Currently, various internal streams have different events that indicate that the underlying resource has successfully been established:
fs
streams use theopen
event once the file descriptor is availablenet.Socket
s use theconnect
event once the socket has been establishedHttp2Stream
s use theready
event once the underlying http/2 session is established
I would like to suggest standardizing on emitting ready
for all of these streams, i.e. emitting ready
for fs
streams and network sockets in addition to the event names they currently use.
If there are no objections, I think this makes for a good first contribution.