Fork me on GitHub
#core-async
<
2021-01-13
>
Ben Sless09:01:36

Do you think there's any way around this issue? https://clojure.atlassian.net/browse/ASYNC-163

mccraigmccraig09:01:37

when i encountered a similar issue with manifold i ended up setting the concurrency to N-2 in a wrapper 😬

Ben Sless10:01:21

I was thinking of modelling a delay mechanism by passing

(fn [x o]
  (let [t (timeout t)]
    (go
      (<! t)
      (put! o x)
      (close! o))))
to an async pipeline but this issue breaks it =\