* Runs an effect with the given number of permits and releases the permits * when the effect completes. * * **When to use** * * Use to run an effect while holding exactly one semaphore permit. * * **Details** * * This function acquires the specified number of permits befor
(self: Effect.Effect<A, E, R>)
| 97 | * are released by other tasks. |
| 98 | */ |
| 99 | withPermit<A, E, R>(self: Effect.Effect<A, E, R>): Effect.Effect<A, E, R> |
| 100 | |
| 101 | /** |
| 102 | * Runs an effect only if the specified number of permits are immediately |
no outgoing calls
no test coverage detected