Take a look at the code snippet below.
readStream.on('data', function(chunk) {
console.log('Received %d bytes of data.', chunk.length);
readStream.pause();
setTimeout(function(){
readStream.resume();
}, 2000);
});
How many seconds does the read stream pause before resuming again?