@reactive-js/scheduler
Advanced tools
Comparing version 0.0.17 to 0.0.18
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface SchedulerContinuationLike { | ||
(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
run(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
} | ||
@@ -5,0 +5,0 @@ export interface SchedulerContinuationResultLike { |
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface SchedulerContinuationLike { | ||
(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
run(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
} | ||
@@ -5,0 +5,0 @@ export interface SchedulerContinuationResultLike { |
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface SchedulerContinuationLike { | ||
(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
run(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
} | ||
@@ -5,0 +5,0 @@ export interface SchedulerContinuationResultLike { |
@@ -14,11 +14,14 @@ [@reactive-js/scheduler](../README.md) › [SchedulerContinuationLike](schedulercontinuationlike.md) | ||
## Callable | ||
## Index | ||
▸ (`shouldYield`: function): *[SchedulerContinuationResultLike](schedulercontinuationresultlike.md) | void* | ||
### Methods | ||
A unit of work which executes on a scheduler. Implementations should | ||
periodically check whether they should yield, and return | ||
a SchedulerContinuationResult if there is additional | ||
work to be performed. | ||
* [run](schedulercontinuationlike.md#run) | ||
## Methods | ||
### run | ||
▸ **run**(`shouldYield`: function): *[SchedulerContinuationResultLike](schedulercontinuationresultlike.md) | void* | ||
**Parameters:** | ||
@@ -25,0 +28,0 @@ |
{ | ||
"name": "@reactive-js/scheduler", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"main": "dist/cjs/index.js", | ||
@@ -41,3 +41,3 @@ "module": "dist/esm5/index.js", | ||
"dependencies": { | ||
"@reactive-js/disposable": "^0.0.17" | ||
"@reactive-js/disposable": "^0.0.18" | ||
}, | ||
@@ -54,3 +54,3 @@ "scripts": { | ||
}, | ||
"gitHead": "ad2250c08f04d3d48f0d6db2393444719ed21dc7" | ||
"gitHead": "65fcf45e6866e6aed3c207c90bdd13a09b0961e3" | ||
} |
@@ -10,3 +10,3 @@ import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface SchedulerContinuationLike { | ||
(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
run(shouldYield: () => boolean): SchedulerContinuationResultLike | void; | ||
} | ||
@@ -13,0 +13,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
333557
+ Added@reactive-js/disposable@0.0.18(transitive)
- Removed@reactive-js/disposable@0.0.17(transitive)