InterviewSolution
Saved Bookmarks
| 1. |
Explain Duplex and Transform streams? |
|
Answer» DUPLEX: Duplex streams are streams that implement both readable and WRITABLE interfaces Examples:
Transform: A type of duplex streams where output is in someway related to the input. LIKE duplex streams, Transform streams also implement both Readable and Writable interfaces. Examples:
|
|