polling-stream
Emit a perpetual readable stream by providing a function that returns the next segment of the readable stream.
This module is a good if you want an perpetual read stream where you need to poll for changes to each new 'segment' of the stream. An example would be polling a database for changes at the end of a table.
Installation
This module is installed via npm:
$ npm install polling-stream
Example Usage
let pollingStream = ;const initState = 0;// poll every 2 seconds after each segment stream has finishedlet s = ;// generate a stream of numbers from 0 to 13, in batches of 10 numbersconst batch = 10;{let i = start;let rs =;return rs;}{return curr + 1;}s;// Will print the numbers from 0 to 9, wait two seconds then print out// the nunbers 10 to 13
API
pollingStream(getNextStreamSegmentFn, initState, updateStateFn, [opts])
Returns a new polling stream.
getNextStreamSegmentFn()
- a function that returns the next segment of data in the perpetual stream. It returns aReadableStream
for the next segment of the stream. The function is passed the current state which is updated with every call towrite()
using theupdateState()
funciton.initState
- the initial state that will be passed togetNextStreamSegmentFn()
.updateStateFn
- Each timewrite()
is called on (i.e. each time we get a chunk from the underlying stream) we call this to update our internal state. It will be given the chunk and the current state as arguments. are required to maintain this (e.g. database writes/reads).opts
- this will be passed to the constructor of the perpetualReadableStream
. It defaults to having{ objectMode: true }
, so set this to false if you're dealing with binary streams. There is also a field calledinterval
which is the poll frequency. When the stream that gets returned fromgetNextStreamSegmentFn
finishes, this delay (in milliseconds) will elapse, before the function gets called again. It defaults to 1000 milliseconds (1 second).
event('terminate')
If you want to actually terminate the perpetual stream you first have to end the stream (eg. stream.push(null)
, and then stream.emit('terminate')
.
event('sync')
The perpetual stream emits a sync
event when the stream segment has closed. You can hook into this to do things like regular logging, stats reporting, etc.