mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-21 19:36:03 +03:00
update README.md for context and fan_in
This commit is contained in:
parent
d0cc207d54
commit
d020f12a2b
37
cspell.json
37
cspell.json
@ -7,24 +7,25 @@
|
||||
"enabled": true,
|
||||
// words - list of words to be always considered correct
|
||||
"words": [
|
||||
"Goroutines",
|
||||
"Stateful",
|
||||
"Structs",
|
||||
"bber",
|
||||
"crazybber",
|
||||
"ifelse",
|
||||
"iostream",
|
||||
"istack",
|
||||
"karlseguin",
|
||||
"logrusorgru",
|
||||
"mongodb",
|
||||
"nums",
|
||||
"postgres",
|
||||
"stretchr",
|
||||
"struct",
|
||||
"xargs",
|
||||
"gomore",
|
||||
"stackless"
|
||||
"bber",
|
||||
"crazybber",
|
||||
"fanin",
|
||||
"gomore",
|
||||
"Goroutines",
|
||||
"ifelse",
|
||||
"iostream",
|
||||
"istack",
|
||||
"karlseguin",
|
||||
"logrusorgru",
|
||||
"mongodb",
|
||||
"nums",
|
||||
"postgres",
|
||||
"stackless",
|
||||
"Stateful",
|
||||
"stretchr",
|
||||
"struct",
|
||||
"Structs",
|
||||
"xargs"
|
||||
],
|
||||
// flagWords - list of words to be always considered incorrect
|
||||
// This is useful for offensive words and common spelling errors.
|
||||
|
@ -1,3 +1,7 @@
|
||||
# 上下文模式
|
||||
|
||||
用于取消一个操作,可能是一个http请求,可能是一个Channel消息队列.
|
||||
上下文模式,就是使用上下传递参数,或者传递操作。
|
||||
|
||||
其实在,观察者模式中,就有用到上下文模式传递参数:[观察模式中的上下文模式](../../behavior/03_observer)
|
||||
|
||||
这是演示,使用context取消http请求的场景。
|
||||
|
@ -1 +1,12 @@
|
||||
# 淡入模式
|
||||
|
||||
或者叫做扇入模式,漏入模式,是一种消息传递模式,用于在工作组件(客户端:源、服务器:目标)之间创建聚合工作。
|
||||
|
||||
对于Go其本质是:将多个channel的消息/数据合并到一个,达到聚合的目的。
|
||||
|
||||
这里演示一个数据流,求和的例子。
|
||||
|
||||
注意,这里演示两种FanIn方式:
|
||||
|
||||
+ 一种方式是多个Goroutine同时进行合并多个输入的channel.
|
||||
+ 另一种方式是一个goroutine同时合并多个输入的channel数据。
|
||||
|
Loading…
Reference in New Issue
Block a user