devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
26 lines (25 loc) • 607 B
JavaScript
/**
* DevExtreme (esm/renovation/ui/scheduler/utils/semaphore/semaphore.js)
* Version: 22.1.9
* Build date: Tue Apr 18 2023
*
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
export class Semaphore {
constructor() {
this.counter = 0
}
isFree() {
return 0 === this.counter
}
take() {
this.counter += 1
}
release() {
this.counter -= 1;
if (this.counter < 0) {
this.counter = 0
}
}
}