Duplex Streams
Learn how Duplex streams work.
We'll cover the following...
A Duplex
stream is a stream that is both Readable
and Writable
. It’s useful when we want to describe an entity that’s both a data source and a data destination, such as network ...