deferred-interval

2.0.0 • Public • Published

deferred-interval

A secure setInterval that defer the execution of the next interval only when the scheduled function have executed.

Dependencies Build Status Greenkeeper badge Known Vulnerabilities

Installation

$ npm install deferred-interval

Basic example

Example of executing a function every 10th second:

const Interval = require('deferred-interval');

const schedule = new Interval();
schedule.start((done, ticks) => {
  console.log('tick number:', ticks);
  done();
}, 10000);

API

The following methods are available:

.start(callback, delay, immediate)

Starts executing a callback on a given interval.

  • callback - The function to execute on each tick.
  • delay - How long, in milliseconds, each interval should be delayed.
  • immediate - If the callback should be executed immediately on start.

.pause(delay)

Pauses execution of the callback

  • delay - How long the pause should last. If no values is given the pause is until resume is done manually

.resume(immediate)

Resumes executing the callback after a pause

  • immediate - If the callback should be executed immediately on resume.

.stop()

Stops execution of the callback - Everything is reset.

.adjust(delay)

Adjust the delay of the execution of the callback function

  • delay - How long, in milliseconds, each interval should be delayed.

License

The MIT License (MIT)

Copyright (c) 2018 - Trygve Lie post@trygve-lie.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i deferred-interval

    Weekly Downloads

    2,138

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    8.42 kB

    Total Files

    4

    Last publish

    Collaborators

    • trygve-lie