(key: string, promise: Promise<void>)
| 116 | return this.mutex.get(key); |
| 117 | } |
| 118 | setMutex(key: string, promise: Promise<void>): void { |
| 119 | this.mutex.set(key, promise); |
| 120 | } |
| 121 | clearMutex(key: string): void { |
| 122 | this.mutex.delete(key); |
| 123 | } |
no test coverage detected