You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/jtk_dvlp/async.cljc
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -102,10 +102,18 @@
102
102
[chs]
103
103
(map vector chs))
104
104
105
-
(defnconsume
106
-
"Consumes channel `ch` executing function `f` for every value on channel. Executionwill be asynchron, call returns immediately with `nil`."
105
+
(defnconsume!
106
+
"Consumes channel `ch` executing function `f` for every value on channel. Spawns a new thread for Execution. Execution will be asynchron. Call returns immediately with `nil`."
0 commit comments