File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- import { Mutex } from "./mutex .ts" ;
1
+ import { RawSemaphore } from "./_raw_semaphore .ts" ;
2
2
3
3
/**
4
4
* A mutual exclusion lock that provides safe concurrent access to a shared value.
@@ -16,7 +16,7 @@ import { Mutex } from "./mutex.ts";
16
16
* ```
17
17
*/
18
18
export class Lock < T > {
19
- #mu = new Mutex ( ) ;
19
+ #sem = new RawSemaphore ( 1 ) ;
20
20
#value: T ;
21
21
22
22
/**
@@ -32,7 +32,7 @@ export class Lock<T> {
32
32
* Returns true if the lock is currently locked, false otherwise.
33
33
*/
34
34
get locked ( ) : boolean {
35
- return this . #mu . locked ;
35
+ return this . #sem . locked ;
36
36
}
37
37
38
38
/**
@@ -43,11 +43,11 @@ export class Lock<T> {
43
43
* @returns A Promise that resolves with the result of the function.
44
44
*/
45
45
async lock < R > ( fn : ( value : T ) => R | PromiseLike < R > ) : Promise < R > {
46
- const lock = await this . #mu . acquire ( ) ;
46
+ await this . #sem . acquire ( ) ;
47
47
try {
48
48
return await fn ( this . #value) ;
49
49
} finally {
50
- lock [ Symbol . dispose ] ( ) ;
50
+ this . #sem . release ( ) ;
51
51
}
52
52
}
53
53
}
You can’t perform that action at this time.
0 commit comments