You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`time-queues` is an efficient library for organizing asynchronous multitasking and scheduled tasks.
7
-
It can be used in a browser and in server-side environments like `Node`, `Deno` and `Bun`.
8
-
It depends only on [list-toolkit](https://github.com/uhop/list-toolkit), which is a no-dependency library for efficient task queues.
9
6
10
-
The following features are provided:
7
+
`time-queues` is an efficient, lightweight library for organizing asynchronous multitasking and scheduled tasks in JavaScript applications. It works seamlessly in browsers and server-side environments like Node.js, Deno, and Bun.
11
8
12
-
* All environments:
13
-
***Scheduler**: a `MinHeap`-based task queue that schedules time-based tasks in the future.
14
-
***repeat()**: a function that creates a repeatable task.
15
-
***defer()**: a function that executes a task at a later time in the next tick.
16
-
* Browsers:
17
-
* Efficient multitasking:
18
-
***IdleQueue**: a task queue that executes tasks in the next idle period.
19
-
* Based on [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback).
20
-
***defer()**: a function that executes a task at a later time in the next idle period.
21
-
***FrameQueue**: a task queue that executes tasks in the next frame.
22
-
* Based on [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
23
-
* Page state management:
24
-
***PageWatcher**: a task queue that executes tasks when the page state changes.
25
-
***watchStates()**: a helper that pauses and resumes queues when the page state changes.
26
-
***whenDomLoaded()**: a helper that executes tasks when the DOM is loaded.
27
-
***whenLoaded()**: a helper that executes tasks when the page is loaded.
9
+
The library provides elegant solutions for common timing and scheduling challenges, helping developers create responsive, efficient applications that follow best practices for resource management and user experience.
28
10
29
-
Internally it uses [List Toolkit](https://github.com/uhop/list-toolkit) and leverages the following browser APIs:
Don't forget to look at a test web application that uses the library. For that you should start a server:
61
-
62
-
```sh
63
-
npm start
64
-
```
65
-
66
-
And navigate to [http://localhost:3000/tests/web/](http://localhost:3000/tests/web/)—
67
-
don't forget to open the console and play around: switch tabs, make other window active,
68
-
navigate away and come back, and so on.
69
-
See how queues work in [tests/web/test.js](https://github.com/uhop/time-queues/blob/main/tests/web/test.js).
70
-
71
33
## Usage
72
34
73
-
The full documentation is available in the project's [wiki](https://github.com/uhop/time-queues/wiki). Below is a cheat sheet of the API.
74
-
75
-
### ListQueue
76
-
77
-
`ListQueue` is a list-based task queue that executes tasks in the order they were added.
78
-
It serves as a base class for other task queues. The following methods are available:
79
-
80
-
| Method | Description |
81
-
|:---|:---|
82
-
|`ListQueue(paused)`| Create a new list queue (paused optionally). |
83
-
|`isEmpty`| Check if the list queue is empty. |
84
-
|`pause()`| Pause the list queue. |
85
-
|`resume()`| Resume the list queue. |
86
-
|`enqueue(fn)`| Schedule a function to be executed. Returns the task. |
87
-
|`dequeue(task)`| Remove a task from the list queue. |
88
-
|`clear()`| Remove all tasks from the list queue. |
89
-
90
-
Subclasses should implement `startQueue()`.
35
+
The full documentation is available in the project's [wiki](https://github.com/uhop/time-queues/wiki). Below is the most important parts of the documentation:
91
36
92
-
### Scheduler
37
+
### Resource Management
93
38
94
-
`Scheduler` is a `MinHeap`-based task queue that schedules time-based tasks in the future.
95
-
It can used to run periodic updates or one-time events.
-[Throttler](https://github.com/uhop/time-queues/wiki/Throttler): Control execution rate based on keys
96
42
97
-
`Scheduler` is not based on `ListQueue`, but implements its API.
98
-
The following additional methods are available:
43
+
### Browser-Specific Components
99
44
100
-
| Method | Description |
101
-
|:---|:---|
102
-
|`Scheduler(paused)`| Create a new scheduler (paused optionally). |
103
-
|`nextTime`| Get the next scheduled time or 'Infinity` if the scheduler is empty. |
104
-
|`enqueue(fn, time)`| Schedule a function to be executed at a later time. Returns the task. `time` can be a date or a number in milliseconds from now. |
105
-
106
-
Scheduled functions are called once with the following arguments:
107
-
108
-
*`fn(task, scheduler)`, where:
109
-
*`fn`— the scheduled function.
110
-
*`task`— the task object that corresponds to the scheduled function.
`defer(fn)` is a function that executes an argument function at a later time in the next tick.
158
-
159
-
Deferred functions are called with no arguments. The return value is ignored.
160
-
161
-
```js
162
-
importdeferfrom'time-queues/defer.js';
163
-
164
-
// run a task in the next tick
165
-
defer(() =>console.log('Goodbye, world!'));
166
-
167
-
// run code now
168
-
console.log('Hello, world!');
169
-
```
170
-
171
-
### IdleQueue
172
-
173
-
`IdleQueue` is a task queue that executes tasks in the next idle period. It implements `ListQueue` and is based on [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback).
174
-
175
-
Efficient web applications should use `IdleQueue` to schedule computations required to prepare data and
176
-
even create necessary DOM elements.
177
-
See [Background Tasks API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Tasks_API) for more information.
178
-
179
-
Queued functions are called once with the following arguments:
180
-
181
-
*`fn(deadline, task, idleQueue)`, where:
182
-
*`fn`— the scheduled function.
183
-
*`deadline`— the deadline object. See [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback) for more information.
184
-
*`task`— the task object that corresponds to the scheduled function.
`FrameQueue` is a task queue that executes tasks in the next frame. It implements `ListQueue` and is based on [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
207
-
208
-
Efficient web applications should use `FrameQueue` to schedule DOM updates.
209
-
See [Background Tasks API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Tasks_API) for more information.
210
-
211
-
Queued functions are called once with the following arguments:
212
-
213
-
*`fn(timeStamp, task, frameQueue)`, where:
214
-
*`fn`— the scheduled function.
215
-
*`timeStamp`— the timestamp object. See [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame) for more information.
216
-
*`task`— the task object that corresponds to the scheduled function.
217
-
*`frameQueue`— the frame queue object.
218
-
219
-
The return value is ignored.
220
-
221
-
The module provides a singleton ready to be used. See the code snippet `IdleQueue` above for more information.
222
-
223
-
### PageWatcher
224
-
225
-
`PageWatcher` is a task queue that executes tasks when the page state changes. It is based on [Page Visibility API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API).
226
-
You can find more information in [Page Lifecycle API](https://developer.chrome.com/docs/web-platform/page-lifecycle-api).
227
-
228
-
Efficient web applications should use `PageWatcher` to watch for page visibility changes and react accordingly, for example, by suspending updates in the hidden state.
229
-
230
-
`PageWatcher` implements `ListQueue`. The following additional/changed methods are available:
231
-
232
-
| Method | Description |
233
-
|:---|:---|
234
-
|`PageWatcher(started)`| Create a new page watcher (started optionally). |
235
-
|`currentState`| Get the current page state (see below). |
236
-
|`enqueue(fn, initialize)`| Schedule a function to be executed. Returns the task. If `initialize` is truthy, the function will be queued and called immediately with the current state. |
237
-
238
-
A page state can be one of the following strings:
239
-
240
-
*`active`— the page is a current window, it is visible and the user can interact with it.
241
-
*`passive`— the page is not a current window, it is visible, but the user cannot interact with it.
242
-
*`hidden`— the page is not visible.
243
-
*`frozen`— the page is suspended, no timers nor fetch callbacks can be executed.
244
-
*`terminated`— the page is terminated, no new tasks can be started.
245
-
246
-
Queued functions are called on every state change with the following arguments:
0 commit comments