文档字符串的引言:“(链接: ...) 每个投射必须在下一个项目分发之前接收。”
`
(def ch (chan))
(def m (mult ch))
(def t-1 (chan))
(def t-2 (chan))
(def t-3 (chan))
(def t-1-takes (atom []))
(defn log [l] (partial swap! l conj))
(tap m t-1)
(tap m t-2)
(tap m t-3)
(close! t-3)
(take! t-1 (log t-1-takes))
(take! t-1 (log t-1-takes)) ;; 这个take不应该在之前发生
;; a take on t-2
(put! ch true)
(put! ch true)
@t-1-takes
;-> [true true] ;; 但是它确实做到了。
`
原因是在一个投射的通道已经关闭时,内部原子dctr减少了两次。