This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-06-19
Channels
- # beginners (17)
- # boot (7)
- # cider (1)
- # cljsrn (4)
- # clojure (22)
- # clojure-austin (19)
- # clojure-canada (1)
- # clojure-dusseldorf (1)
- # clojure-greece (3)
- # clojure-russia (19)
- # clojure-spec (46)
- # clojure-uk (23)
- # clojurescript (17)
- # core-async (7)
- # cursive (13)
- # dirac (66)
- # kekkonen (1)
- # lein-figwheel (2)
- # om (1)
- # onyx (2)
- # re-frame (1)
- # reagent (1)
- # specter (2)
Is there a function to pull all messages from channel to collection? I usually do this by using go-loop to manually pull the messages out. Wonder if there’s an easier way
rather clojure.core.async/into
. returns a channel that gives you the collection when complete
@ghadi: Thanks. It would be nicer if I don’t have to wrap this with (go (<! ))
in clojurescript environment