@reactive-js/scheduler
Advanced tools
Comparing version 0.0.25 to 0.0.26
{ | ||
"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 |
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
3257
3
0
1
+ Added@reactive-js/disposable@0.0.26(transitive)
- Removed@reactive-js/disposable@0.0.25(transitive)