ServerJS/Filesystem API/Show of hands: Difference between revisions
< ServerJS | Filesystem API
Jump to navigation
Jump to search
(Created page with ';.write operations on a stream: :A.1) May do partial writes and return the data that has not yet been read. :A.2) May do partial writes and return the length of data that has bee…') |
Tlrobinson (talk | contribs) mNo edit summary |
||
| Line 6: | Line 6: | ||
* Daniel Friesen | * Daniel Friesen | ||
* Kris Kowal | * Kris Kowal | ||
* Tom Robinson | |||
=== Notes === | === Notes === | ||
* Kris Kowal thinks that B).write should return `this` to allow chaining. | * Kris Kowal thinks that B).write should return `this` to allow chaining. | ||
Revision as of 00:03, 29 August 2009
- .write operations on a stream
- A.1) May do partial writes and return the data that has not yet been read.
- A.2) May do partial writes and return the length of data that has been written.
- Wes Garland
- B) Block until all the data has been written to the underlying layer (partial writes may be handled with a different method or options; unspecified atm).
- Daniel Friesen
- Kris Kowal
- Tom Robinson
Notes
- Kris Kowal thinks that B).write should return `this` to allow chaining.