Is the kinda ugly  constant (doall usage a sign that I'm doing something 
silly?

(let [num-workers 4
      widgets-per-worker (inc (int (/ (count widgets) num-workers)))
      bucketed-widgets (partition-all widgets-per-worker widgets)
      workers (doall (map (fn [widgets]
                              (thread
                                (doseq [widget widgets]
                                  (long-running-widget-processor widget))
                                true))
                           bucketed-widgets))]
  (doall (map <!! workers)))

https://gist.github.com/bfabry/ad830b1888e4fc550f88

All comments appreciated :-)

Cheers,
Beau

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to