We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2388883 commit 6404d94Copy full SHA for 6404d94
src/main/wrapper/CxWrapper.ts
@@ -13,7 +13,7 @@ import {Semaphore} from "async-mutex";
13
type ParamTypeMap = Map<CxParamType, string>;
14
15
export class CxWrapper {
16
- private static instances =new Map<string, CxWrapper>();
+ private static instances =new Map<string, CxWrapper>(); // Multiton pattern
17
private static semaphore = new Semaphore(1); // Semaphore with 1 slot
18
config: CxConfig;
19
cxInstaller: CxInstaller;
0 commit comments