From 881d9bea0159b54ed41de323d03093f0dfcee7b0 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 6 Jul 2015 11:50:17 -0700 Subject: [PATCH] doc: readable event clarification per https://github.com/joyent/node/issues/14597 Indicate that `'readable'` indicates only that data can be read from the stream, not that there is actually data to be consumed. `readable.read([size])` can still return null. Includes an example that illustrates the point. Reviewed-By: James M Snell PR-URL: https://github.com/joyent/node/pull/25591 --- doc/api/stream.markdown | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index 768b7d2ad4e782..ecb17413722c7a 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -167,6 +167,32 @@ again when more data is available. The `readable` event is not emitted in the "flowing" mode with the sole exception of the last one, on end-of-stream. +Note that the `'readable'` event indicates only that data *can* be +read from the stream. It does not indicate whether there is actual +data to be consumed. The callback passed to handle the `'readable'` +event must be prepared to handle a `null` response from +`readable.read([size])`. For instance, in the following example, `foo.txt` +is an empty file: + +```javascript +var fs = require('fs'); +var rr = fs.createReadStream('foo.txt'); +rr.on('readable', function() { + console.log('readable:', rr.read()); +}); +rr.on('end', function() { + console.log('end'); +}); +``` + +The output of running this script is: + +``` +bash-3.2$ node test.js +readable: null +end +``` + #### Event: 'data' * `chunk` {Buffer | String} The chunk of data.