Files
SillyTavern/public/scripts/util/SimpleMutex.js
T
Cohee 4d1619ba47 Chore: enable brace-style eslint check (#5159)
* eslint: enable brace-style check

* Fix jsdoc and color

* fix: correct CSS color syntax in CreateZenSliders function
2026-02-15 01:46:32 +02:00

44 lines
887 B
JavaScript

/**
* A simple mutex class to prevent concurrent updates.
*/
export class SimpleMutex {
/**
* @type {boolean}
*/
isBusy = false;
/**
* @type {Function}
*/
callback = () => {};
/**
* Constructs a SimpleMutex.
* @param {Function} callback Callback function.
*/
constructor(callback) {
this.isBusy = false;
this.callback = callback;
}
/**
* Updates the mutex by calling the callback if not busy.
* @param {...any} args Callback args
* @returns {Promise<void>}
*/
async update(...args) {
// Don't touch me I'm busy...
if (this.isBusy) {
return;
}
// I'm free. Let's update!
try {
this.isBusy = true;
await this.callback(...args);
} finally {
this.isBusy = false;
}
}
}