Socket
Socket
Sign inDemoInstall

pauseable

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pauseable

Create event emitters, intervals, and timeouts that can be paused and resumed.


Version published
Weekly downloads
1.7K
decreased by-31.44%
Maintainers
1
Install size
11.9 kB
Created
Weekly downloads
 

Readme

Source

Pauseable Build Status

Pauseable allows you to pause event emitters, timeouts, and intervals. It can easily group multiple of these pauseable objects and pause entire groups.

Usage

Using pauseable with EventEmitter

var pauseable = require('pauseable')
  , EventEmitter = require('events').EventEmitter
  ;

var ee = new EventEmitter();

ee.on('foo', function() { ... });

// ...later
pauseable.pause(ee);

// this event will not be immediately fired
// instead, it will be buffered
ee.emit('foo', 'hellow');

// ...much later
// the 'foo' event will be fired at this point
pauseable.resume(ee);

Comes with pauseable setTimeout and setInterval too

var timeout = pauseable.setTimeout(function() {
  // this will take 8 seconds total to execute
  // not 5
}, 5000);

// pause timeout after 2 secs
setTimeout(function() {
  timeout.pause();
  timeout.isPaused(); // true
  
  // resume after 3
  setTimeout(function() {
    timeout.resume();
  }, 3000);
}, 2000);

The function and ms arguments are interchangeable. Use whichever way you prefer!

var interval = pauseable.setInterval(5000, function() {
  // this is called after 5 seconds
  // then paused for 2 seconds
  interval.pause(2000);
});

Grouping

// create a group
var g = pauseable.createGroup();

// make and add emitters to group
var ee1 = g.add(new EventEmitter());
var ee2 = g.add(new EventEmitter());

ee1.on('forth', function() {
  // pause entire group (that means ee1 and ee2) for 500 ms
  // timeout is out of the group by the time this executes
  g.pause(500);
  console.log('forth');
  ee2.emit('back');
});

ee2.on('back', function() {
  console.log('back');
  ee1.emit('forth');
});

var timeout = g.setTimeout(function() {
  ee2.emit('back', 'poop');
}, 1000);

Motive

Javascript is event based by nature. When developing large scale applications that are completely event based, it becomes complicated to pause the streaming of events, because Javascript never "sleeps". It becomes even more complicated to pause timeouts and intervals having to keep track of when they were paused so they can be resumed with the correct time again.

That's where this module comes in. Pauseable helps manage pausing and resuming your application or part of it. It works with EventEmitter and with setInterval and setTimeout.

API

Events

pauseable.pause(ee, [ms])

Pauses an instance of EventEmitter. All events get buffered and emitted once the emitter is resumed. Currently only works with EventEmitters. Optional ms will pause only for that long.

pauseable.resume(ee, [ms])

Resumes the emitter. Events can be emitted again. Optional ms will resume only for that long.

Timers

pauseable.setTimeout(fn, ms) and pauseable.setInterval(fn, ms)

Creates a pauseable timeout or interval. fn and ms are interchangeabale. Returns an instance of timer.

timer.pause([ms])

Pauses timer. Optional ms will pause the timer only for that amount.

timer.resume([ms])

Resumes timer. Optional ms will resume the timer only for that amount.

timer.next()

Returns the number of ms left until the fn function in the constructor gets called again.

timer.clear()

Clears timeout. Can no longer be resumed.

timer.isPaused()

Returns true if timer is currently paused.

timer.isDone()

Returns true if timer was a timeout and fn was called, or timer.clear() has been called.

timer.onDone(callback)

If timer is a timeout, this can be used to execute the callback when the fn in the constructor is called.

Groups

pauseable.createGroup()

Creates a group where emitters and timers can be easily managed.

group.add()

Add an emitter or a timer to the group. Returns added emitter/timer.

group.setTimeout(fn, ms)

group.setInterval(fn, ms)

Shortcut to create an instance of a timer and add it to the group.

group.pause([ms])

Pauses all emitters and timers in the group.

group.resume([ms])

Resumes all emitters and timers in the group.

group.clear()

Clears timers in the group.

group.isPaused()

Returns true is group is paused.

group.isDone()

Returns true if all timers currently in the group are timeouts and their original function has been called or all timers have been cleared.

group.timers()

Contains both emitters and timers. Useful if you want to micro manage more.

Install

npm install pauseable

Tests

Tests are written with mocha

npm test

License

MIT

Keywords

FAQs

Last updated on 22 Jan 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc