-
-
Save domenic/9077224 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Stream type: tcp | |
* fundamental unit: buffer given to us by the OS | |
* list representation: array of buffers | |
read() -> yields a Buffer containing whatever the OS gave us for that chunk | |
// Stream type: text lines (e.g. after splitting a text files into lines) | |
* fundamental unit: line (string) | |
* list representation: array | |
read() -> yields a string | |
// Stream type: UDP datagrams (boundaries matter) | |
* fundamental unit: datagram (Buffer) | |
* list representation: array | |
read() -> yields a buffer containing a full datagram | |
// Stream type: arbitrary objects | |
* fundamental unit: Object | |
* list representation: array | |
... guess what? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment