Initial commit
This commit is contained in:
commit
b3a51a4115
10336 changed files with 2381973 additions and 0 deletions
28
node_modules/effect/dist/esm/internal/concurrency.js
generated
vendored
Normal file
28
node_modules/effect/dist/esm/internal/concurrency.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import * as core from "./core.js";
|
||||
/** @internal */
|
||||
export const match = (concurrency, sequential, unbounded, bounded) => {
|
||||
switch (concurrency) {
|
||||
case undefined:
|
||||
return sequential();
|
||||
case "unbounded":
|
||||
return unbounded();
|
||||
case "inherit":
|
||||
return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" ? unbounded() : concurrency > 1 ? bounded(concurrency) : sequential());
|
||||
default:
|
||||
return concurrency > 1 ? bounded(concurrency) : sequential();
|
||||
}
|
||||
};
|
||||
/** @internal */
|
||||
export const matchSimple = (concurrency, sequential, concurrent) => {
|
||||
switch (concurrency) {
|
||||
case undefined:
|
||||
return sequential();
|
||||
case "unbounded":
|
||||
return concurrent();
|
||||
case "inherit":
|
||||
return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" || concurrency > 1 ? concurrent() : sequential());
|
||||
default:
|
||||
return concurrency > 1 ? concurrent() : sequential();
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=concurrency.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue