Fork me on GitHub
#core-async
<
2016-07-17
>
maxp09:07:52

is there a way for producer to know is the channel open or closed for writing?

Alex Miller (Clojure team)11:07:44

You can offer! for put only if open

andrewboltachev14:07:00

Does anyone know how to make go blocks "reload" in CLJS+Fighweel app?

andrewboltachev14:07:49

Ah... just kind of a solution above 🙂

darwin17:07:55

in cljs I tend to make my go-loops as simple as possible and move all non-async code into separate functions, this way the problem is solved for me, because it is unlikely for me to be rewriting code in go-loops, usually it is the functions called from them

darwin17:07:51

and it is a good practice overall to keep your go blocks as lean as possible, for debugging and to avoid core.async state machine complexity