@nxtedition/scheduler 3.0.6 → 3.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +8 -8
- package/lib/index.js +18 -15
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export type Priority = -3 | -2 | -1 | 0 | 1 | 2 | 3 | 'lowest' | 'lower' | 'low' | 'normal' | 'high' | 'higher' | 'highest';
|
|
2
|
-
export declare function parsePriority(p: string | number):
|
|
2
|
+
export declare function parsePriority(p: string | number): -3 | -2 | -1 | 0 | 1 | 2 | 3;
|
|
3
3
|
export declare class Scheduler {
|
|
4
4
|
#private;
|
|
5
|
-
static LOWEST
|
|
6
|
-
static LOWER
|
|
7
|
-
static LOW
|
|
8
|
-
static NORMAL
|
|
9
|
-
static HIGH
|
|
10
|
-
static HIGHER
|
|
11
|
-
static HIGHEST
|
|
5
|
+
static readonly LOWEST = -3;
|
|
6
|
+
static readonly LOWER = -2;
|
|
7
|
+
static readonly LOW = -1;
|
|
8
|
+
static readonly NORMAL = 0;
|
|
9
|
+
static readonly HIGH = 1;
|
|
10
|
+
static readonly HIGHER = 2;
|
|
11
|
+
static readonly HIGHEST = 3;
|
|
12
12
|
get concurrency(): number;
|
|
13
13
|
get stats(): {
|
|
14
14
|
deferred: number;
|
package/lib/index.js
CHANGED
|
@@ -25,7 +25,7 @@ class FastQueue {
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
export function parsePriority(p )
|
|
28
|
+
export function parsePriority(p ) {
|
|
29
29
|
if (typeof p === 'number') {
|
|
30
30
|
// Do nothing...
|
|
31
31
|
} else if (p === 'lowest') {
|
|
@@ -53,18 +53,18 @@ export function parsePriority(p ) {
|
|
|
53
53
|
} else if (p > 3) {
|
|
54
54
|
return 3
|
|
55
55
|
} else {
|
|
56
|
-
return Math.trunc(p)
|
|
56
|
+
return Math.trunc(p)
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
export class Scheduler {
|
|
61
|
-
static
|
|
62
|
-
static
|
|
63
|
-
static
|
|
64
|
-
static
|
|
65
|
-
static
|
|
66
|
-
static
|
|
67
|
-
static
|
|
61
|
+
static LOWEST = -3
|
|
62
|
+
static LOWER = -2
|
|
63
|
+
static LOW = -1
|
|
64
|
+
static NORMAL = 0
|
|
65
|
+
static HIGH = 1
|
|
66
|
+
static HIGHER = 2
|
|
67
|
+
static HIGHEST = 3
|
|
68
68
|
|
|
69
69
|
#concurrency
|
|
70
70
|
#stateView
|
|
@@ -104,14 +104,17 @@ export class Scheduler {
|
|
|
104
104
|
}
|
|
105
105
|
const stateBuffer = new SharedArrayBuffer(64)
|
|
106
106
|
const stateView = new Int32Array(stateBuffer)
|
|
107
|
-
Atomics.store(stateView, CONCURRENCY_INDEX, concurrency ??
|
|
107
|
+
Atomics.store(stateView, CONCURRENCY_INDEX, concurrency ?? -1)
|
|
108
108
|
return stateBuffer
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
constructor(opts ) {
|
|
112
112
|
if (opts instanceof SharedArrayBuffer) {
|
|
113
113
|
this.#stateView = new Int32Array(opts)
|
|
114
|
-
this.#concurrency = Atomics.load(this.#stateView, CONCURRENCY_INDEX)
|
|
114
|
+
this.#concurrency = Atomics.load(this.#stateView, CONCURRENCY_INDEX)
|
|
115
|
+
if (this.#concurrency === -1) {
|
|
116
|
+
this.#concurrency = Infinity
|
|
117
|
+
}
|
|
115
118
|
} else {
|
|
116
119
|
this.#concurrency = opts?.concurrency ?? Infinity
|
|
117
120
|
}
|
|
@@ -119,7 +122,7 @@ export class Scheduler {
|
|
|
119
122
|
|
|
120
123
|
run (
|
|
121
124
|
fn ,
|
|
122
|
-
priority
|
|
125
|
+
priority = Scheduler.NORMAL,
|
|
123
126
|
opaque ,
|
|
124
127
|
) {
|
|
125
128
|
return new Promise ((resolve, reject) => {
|
|
@@ -153,9 +156,9 @@ export class Scheduler {
|
|
|
153
156
|
return
|
|
154
157
|
}
|
|
155
158
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
+
// We use non atomic access here as an optimization and treat the concurrency limit as a soft limit.
|
|
160
|
+
if (this.#stateView[RUNNING_INDEX] < this.#concurrency) {
|
|
161
|
+
Atomics.add(this.#stateView, RUNNING_INDEX, 1)
|
|
159
162
|
this.#running += 1
|
|
160
163
|
fn(opaque)
|
|
161
164
|
return
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxtedition/scheduler",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"rimraf": "^6.1.2",
|
|
29
29
|
"typescript": "^5.9.3"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "64c1bd97cf9a785ca4a750b5380418878cbed2d2"
|
|
32
32
|
}
|