* For Bounded Queue: uses the `BackPressure` Strategy, places the values in * the queue and always returns true. If the queue has reached capacity, then * the fiber performing the `offerAll` will be suspended until there is room * in the queue. * * For Unbounded Queue: Places all valu
(iterable: Iterable<A>)
| 128 | * queue but if there is no room it will not enqueue them and return false. |
| 129 | */ |
| 130 | offerAll(iterable: Iterable<A>): Effect.Effect<boolean> |
| 131 | } |
| 132 | |
| 133 | /** |
no outgoing calls