The Kotlin docs use the term consume
both to describe the behavior of such methods as Channel#first()
and in the names of methods such as Channel#consumeEach()
.
I'm having difficulty understanding what it means for a channel to be consumed vs non-consumed.
What does non-consumption even look like?
Does the Channel API allow for accessing items in a channel without consumption?
Other than consumeEach()
, does consumption always imply completely emptying a channel?
The output of the following code illustrates the meaning of "consuming" and the effect of
consumeEach
.Output:
We see that (in f1) we can stop iterating over a channel, then later continue where we left off. However, when using
consumeEach
(in f2), we are unable to stop and continue, even though the channel was initially capable of producing numbers greater than2
.