You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: week-5/streamsAndBuffers/streams-buffers.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
22
22
#### Streams
23
23
- Streams are a form of **partially buffered access**
24
-
- Streams return small pieces of data (using a buffer) and trigger a callback when each new piece of data is available for processing
24
+
- Streams return small pieces of data (using a buffer) and trigger an event when each new piece of data is available for processing
25
25
- Since streams are partially buffered, we can process each piece of data **as soon as it is read** - this means we don't necessarily need to buffer / save the whole file into memory
26
26
- The Node stream interface consists of two parts:
0 commit comments