New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

schedula

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

schedula

priority based work scheduler for javascript

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

schedula.js

priority based work scheduler for javascript.

  • ~700 bytes minified+gzipped

npm licence

Browser Support

  • Edge
  • IE 8+
  • Chrome
  • Firefox
  • Safari
  • Node

Installation

direct download
<script src=schedula.min.js></script>
CDN
<script src=https://unpkg.com/schedula.js@0.1.2/schedula.min.js></script>
npm
npm install md.js --save

Examples

// create a fiber
var fiber = schedula(60);

// push work
fiber.push(true, null, (a, b) => {
	console.log(a, b);
}, 3, [1, 2]);

// slow things down, this will throttle work to a 20fps budget
schedule.budget = 20;

// speed things up, this will throttle work to a 60fps budget
schedule.budget = 60;

// context
var foo = {
	bar: function (a, b) {
		console.log(a, b);
	}
}

fiber.push(true, foo, foo.bar, 3, [1, 2]);

// manually flush high priority work, without throttling
fiber.flush(true); 

// manually flush low priority work, without throttling

API

push

push work

/**
 * @param {boolean}  priority  - true for high priority
 * @param {any}      context   - this context
 * @param {function} callback  - callback function
 * @param {number}   length    - number of arguments passed
 * @param {any[]}    arguments - array of arguments passed
 */
flush

manually flush work sync

/**
 * @param {boolean}  priority  - true for high priority
 */
budget

get/set budget

/**
 * @type getter/setter
 */
work

get queued work.

/**
 * @type getter
 */

Keywords

FAQs

Package last updated on 23 Jan 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc