(capacity: number)
| 571 | * @since 2.0.0 |
| 572 | */ |
| 573 | export const dropping = <A, E = never>(capacity: number): Effect<Queue<A, E>> => |
| 574 | make({ capacity, strategy: "dropping" }) |
| 575 | |
| 576 | /** |
| 577 | * Creates an unbounded queue that can grow to any size without blocking producers. |