* Acquires the specified number of permits and returns the resulting * available permits, suspending the task if they are not yet available. * Concurrent pending `take` calls are processed in a first-in, first-out manner.
(permits: number)
| 11807 | * Concurrent pending `take` calls are processed in a first-in, first-out manner. |
| 11808 | */ |
| 11809 | take(permits: number): Effect<number> |
| 11810 | |
| 11811 | /** |
| 11812 | * Releases the specified number of permits and returns the resulting |
no outgoing calls