We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6b951 commit 4e0733dCopy full SHA for 4e0733d
src/main/clojure/cljs/core/async.cljs
@@ -78,7 +78,8 @@
78
exception-handler. A promise channel can take exactly one value that consumers
79
will receive. Once full, puts complete but val is dropped (no transfer).
80
Consumers will block until either a value is placed in the channel or the
81
- channel is closed. See chan for the semantics of xform and ex-handler."
+ channel is closed, then return the value (or nil) forever. See chan for the
82
+ semantics of xform and ex-handler."
83
([] (promise-chan nil))
84
([xform] (promise-chan xform nil))
85
([xform ex-handler]
0 commit comments