groupedWeightedWithin

Chunk up this stream into groups of elements received within a time window, or limited by the weight of the elements, whatever happens first.

Timer driven operators

Signature

Source.groupedWeightedWithinSource.groupedWeightedWithin Flow.groupedWeightedWithinFlow.groupedWeightedWithin

Description

Chunk up this stream into groups of elements received within a time window, or limited by the weight and number of the elements, whatever happens first. Empty groups will not be emitted if no elements are received from upstream. The last group before end-of-stream will contain the buffered elements since the previously emitted group.

See also:

  • grouped for a variant that groups based on number of elements
  • groupedWeighted for a variant that groups based on element weight
  • groupedWithin for a variant that groups based on number of elements and a time window

Reactive Streams semantics

emits when the configured time elapses since the last group has been emitted, but not if no elements has been grouped (i.e: no empty groups), or when weight limit has been reached.

backpressures downstream backpressures, and buffered group (+ pending element) weighs more than maxWeight

completes when upstream completes

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.