Module boundedness

Module boundedness 

Source
Expand description

Type declarations for boundedness markers, which indicate whether a live collection is finite and immutable (Bounded) or asynchronously arriving over time (Unbounded).

Enums§

Bounded
Marks the stream as being bounded, which means that it is guaranteed to be complete in finite time.
Unbounded
Marks the stream as being unbounded, which means that it is not guaranteed to be complete in finite time.

Traits§

Boundedness
A marker trait indicating whether a stream’s length is bounded (finite) or unbounded (potentially infinite).
KeyedBoundFoldLike
Helper trait that determines the boundedness for the result of keyed aggregations.