Go Channels: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:


=Overview=
=Overview=
The Go <code>channel</code>s provide a composable, concurrent-safer way to communicate between concurrent processes.
The Go <code>chan</code>s provide a composable, concurrent-safer way to communicate between concurrent processes.


=Channel Patterns=
=Channel Patterns=
==Pipelines==
==Pipelines==

Revision as of 23:03, 15 January 2024

External

Internal

TODO

Deplete Go_Channels into this.

Overview

The Go chans provide a composable, concurrent-safer way to communicate between concurrent processes.

Channel Patterns

Pipelines