我有一个作为发布者的频道:
(def publisher (async/chan))
(def publication (async/pub publisher :topic))
由于 的性质sub/pub
,当我这样做时:
(async/put! publisher {:topic :foo})
消息被发布使用,并且由于没有订阅者,它将被丢弃。
如果我尝试订阅该:foo
主题:
(def reader (async/chan))
(async/sub publication :foo reader)
(async/go (println "got val " (async/<! reader)))
我不会看到任何印刷品。但是,如果我在发布者中放置更多项目:
(async/put! c1 {:topic :foo :msg "after"})
==> got val {:topic :foo :msg "after"}
即使订阅者尚未订阅,有没有办法不丢失n
发布者生成的最后一个项目?