ServerJS/Filesystem API/Show of hands

From MozillaWiki
< ServerJS‎ | Filesystem API
Revision as of 23:33, 28 August 2009 by Dantman (talk | contribs) (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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
.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

Notes

  • Kris Kowal thinks that B).write should return `this` to allow chaining.