1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {