Skip to content

Commit

Permalink
The technical term
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Dec 6, 2023
1 parent 46f9588 commit 952007d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interleave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ class EndOfInputError(Exception):

class FunnelQueue(Generic[T]):
"""
A multiproducer queue that keeps track of the number of active producers
and stops outputting values once all producers have finished & all input
has been retrieved.
A multi-producer, single-consumer FIFO queue that keeps track of the number
of active producers and stops outputting values once all producers have
finished & all input has been retrieved.
Each new producer must be registered by calling `putting()`, which returns
a context manager that unregisters the producer on exit. Once all
Expand Down

0 comments on commit 952007d

Please sign in to comment.