Go OR-Done-Channel Pattern: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
</syntaxhighlight>
</syntaxhighlight>


=<tt>orDone(...)</tt>=
=<tt>orDone()</tt>=
The <code>orDone(...)</code> function:
The <code>orDone(...)</code> function:
<syntaxhighlight lang='go'>
<syntaxhighlight lang='go'>
</syntaxhighlight>
</syntaxhighlight>

Revision as of 22:24, 5 February 2024

Internal

Overview

Reading from a channel until the channel is closed can be done by ranging over a channel:

for v := range c {
  // do something with the channel value, we exit the loop automatically when the channel is closed
  ...
}

The for/range syntax is simple and intuitive, but it cannot be used anymore if we want to make the loop preemptable by using a done channel. In that case we need to replace it with a for/select syntax and case for the state of the done channel (see an example here).

The equivalent syntax is:

for v := range orDone(done, c) {
  // do something with the channel value, we exit the loop automatically when the 'c' channel is closed
  // or when the 'done' channel is messaged (written onto or closed)
  ...
}

orDone()

The orDone(...) function: