Giter Club home page Giter Club logo

schedula.js's Introduction

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/[email protected]/schedula.min.js></script>

npm

npm install schedula --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
fiber.flush(false);

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
 */

schedula.js's People

Contributors

thysultan avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.