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

@reactive-js/scheduler

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reactive-js/scheduler - npm Package Compare versions

Comparing version 0.0.25 to 0.0.26

6

package.json
{
"name": "@reactive-js/scheduler",
"version": "0.0.25",
"version": "0.0.26",
"main": "dist/cjs/index.js",

@@ -41,3 +41,3 @@ "module": "dist/esm5/index.js",

"dependencies": {
"@reactive-js/disposable": "^0.0.25"
"@reactive-js/disposable": "^0.0.26"
},

@@ -54,3 +54,3 @@ "scripts": {

},
"gitHead": "c23221b85a7fc7f4252783af164069c6397f41de"
"gitHead": "8ba4fa5036e9a8dedc0394b229e565934f0f7195"
}
# @reactive-js/scheduler
Abstract API for a cooperative multi-tasking scheduler in a javascript environment.
Abstract API for a cooperative multi-tasking scheduling in a javascript environment.
The Scheduler API is designed to support both immediate and delayed scheduling of work, known as a SchedulerContinuation. Recursively scheduled work is also supported. Cooperative multi-tasking is achieved via periodic polling of the `shouldYield` function within a SchedulerContinuation.
The Scheduler API is designed to support both immediate and delayed scheduling of work. Recursively scheduled work is also supported. Cooperative multi-tasking is achieved via periodic polling of the `shouldYield` function within a SchedulerContinuation.
This abstract API is meant to be implemented by a platform specific implementation such as React's [Scheduler](https://github.com/facebook/react/tree/master/packages/scheduler) package. Such an implementation is available in the [@reactive-js/react-scheduler](https://www.npmjs.com/package/@reactive-js/react-scheduler) package.
This abstract API is implemented by platform specific implementations that schedule work using the platform specific scheduler such as the one provided by [React](https://github.com/facebook/react/tree/master/packages/scheduler). Such an implementation is available in the [@reactive-js/react-scheduler](https://www.npmjs.com/package/@reactive-js/react-scheduler) package.

@@ -9,0 +9,0 @@ ## Installation

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