1.0.0 • Published 6 years ago

smart_timer v1.0.0

Weekly downloads
6
License
-
Repository
github
Last release
6 years ago

smart-timer

A smart timer uses a timeout and an interval timer to check for timeout events, thereby avoiding excessive timeout checks.

usage

const stream = somehowGetAStream()

const {create} = require('smart_timer')
const timer = create(() => stream.destroy()), {timeout: 5000, interval: 1000})

stream
  .on('data', () => timer.touch())    // keep the timer updated of activity
  .on('end', () => timer.destroy())   // destroy the timer when done