🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

frame-scheduling

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frame-scheduling

Asynchronous start of functions in JS. Supports priority and interrupt execution every 16 milliseconds, to achieve 60fps.

0.3.0
Source
npm
Version published
Weekly downloads
32
128.57%
Maintainers
1
Weekly downloads
 
Created
Source

Frame Scheduling

import frameScheduling, { P_IMPORTANT } from 'frame-scheduling';
// And export module...
frameScheduling(() => { Action() }, { priority: P_IMPORTANT });

Asynchronous running tasks in JavaScript. Supports priority and interrupt execution every 16 milliseconds, to achieve 60fps.

Usage

frameScheduling(callback: Function)
frameScheduling(callback: Function, { priority: number }) // priority default = 5

Options

priority: number = 5

It is possible to set the priority of the function. If the function has a low priority, then each execution skip adds +1 to the priority. Thus, low-priority tasks, when something is done.

FAQs

Package last updated on 23 Oct 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