smart_timer

1.0.0 • Public • Published

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

/smart_timer/

    Package Sidebar

    Install

    npm i smart_timer

    Weekly Downloads

    0

    Version

    1.0.0

    License

    none

    Unpacked Size

    8.23 kB

    Total Files

    5

    Last publish

    Collaborators

    • anandsuresh