评论者:alexmiller
在多对多信道上使用现有的异步结构实现IDeref和IBlockingDeref的概念相对简单
`
(deftype ManyToManyChannel
#_existing_code...
IDeref
(deref [this] (<!! this))
IBlockingDeref
(deref [this ms timeoutValue]
(alt!!
this ([val _] val)
(timeout ms) timeoutValue)))
`
然而,M2MC定义在clojure.core.async.impl.channels中。<!!、alt(image: )和timeout都定义在clojure.core.async中,而clojure.core.async依赖于clojure.core.async.impl.channels,因此这里存在循环依赖问题。<!!和时间超时相对容易处理,比如这样查找delay后面的var:
`
(def ^:private <!!' (delay (find-var 'clojure.core.async/<!!)))
;; 然后
IDeref
(deref [this] (@<!!' this))
`
但是,我对如何处理等价的alt!!感到有些困惑,它是一个围绕do-alt和alts(image: )的宏。