July 2017
Intermediate to advanced
656 pages
16h 1m
English
If we want to make a stream that provides data for other users to read, we need to make a readable stream. An example of a readable stream could be a stream that reads data from a file stored on disk.
If we want to make a stream that other users can write data to, we need to make a writable stream. An example of a writable stream could be a stream that writes data to a file stored on disk.
Sometimes you want to make a stream that is both readable and writable ...