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.
=Channel Patterns=
=Channel Patterns=
==Pipelines==
==Pipelines==

Revision as of 22:38, 15 January 2024

External

Internal

TODO

Deplete Go_Channels into this.

Overview

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

Channel Patterns

Pipelines