Introduction
In stream processing, a Sink
is a construct designed to consume elements generated by a Stream
.
Here’s an overview of what a Sink
does:
- It consumes a varying number of
In
elements, which may include zero, one, or multiple elements. - It can encounter errors of type
E
during processing. - It produces a result of type
A
once processing completes. - It can also return a remainder of type
L
, representing any leftover elements.
To process a stream using a Sink
, you can pass it directly to the Stream.run
function:
Example (Using a Sink to Collect Stream Elements)
The type of sink
is as follows:
Here’s the breakdown:
Chunk<number>
: The final result produced by the sink after processing elements (in this case, a Chunk of numbers).number
(first occurrence): The type of elements that the sink will consume from the stream.number
(second occurrence): The type of leftover elements, if any, that are not consumed.never
(first occurrence): Indicates that this sink does not produce any errors.never
(second occurrence): Shows that no dependencies are required to operate this sink.