1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Update AsyncActionQueue.ts

This commit is contained in:
Laurent Cozic
2020-06-02 22:35:41 +01:00
committed by GitHub
parent 3bb9d2efd6
commit bfec890632

View File

@@ -9,7 +9,7 @@ export interface QueueItem {
// The AsyncActionQueue can be used to debounce asynchronous actions, to make sure
// they run in the right order, and also to ensure that if multiple actions are emitted
// only the last one are executed. This is particularly useful to save data in the background.
// only the last one is executed. This is particularly useful to save data in the background.
// Each queue should be associated with a specific entity (a note, resource, etc.)
export default class AsyncActionQueue {