* Releases the specified number of permits and returns the resulting * available permits. * * **When to use** * * Use to manually return permits acquired by a lower-level coordination * protocol.
(this: Semaphore, permits: number)
| 152 | * protocol. |
| 153 | */ |
| 154 | release(this: Semaphore, permits: number): Effect.Effect<number> |
| 155 | |
| 156 | /** |
| 157 | * Releases all permits held by this semaphore and returns the resulting available permits. |
no outgoing calls
no test coverage detected