go-pattern-examples/gomore/04_fan_in/README.md
2020-05-07 15:06:54 +08:00

10 lines
391 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 扇入模式
或者叫做汇聚模式,漏入模式,是一种消息传递模式,用于在工作组件之间创建聚合流。
对于Go来说其操作是将多个channel的消息/数据合并到一个,达到聚合的目的。
这里演示一个数据流,求和的例子。
这里演示,一个最佳实践将多个Goroutine的输入同时进行合并到单个channel中.