* Adjusts the number of permits available in the semaphore. * * **When to use** * * Use to change the total permit count of an existing semaphore.
(this: Semaphore, permits: number)
| 63 | * Use to change the total permit count of an existing semaphore. |
| 64 | */ |
| 65 | resize(this: Semaphore, permits: number): Effect.Effect<void> |
| 66 | |
| 67 | /** |
| 68 | * Runs an effect with the given number of permits and releases the permits |
no outgoing calls
no test coverage detected