Skip to content

Instantly share code, notes, and snippets.

@hlship
Created May 6, 2016 18:56
Show Gist options
  • Save hlship/3350f2f5007c084799a9f55053967e6f to your computer and use it in GitHub Desktop.
Save hlship/3350f2f5007c084799a9f55053967e6f to your computer and use it in GitHub Desktop.
(defn customers [db]
(let [ch (chan 100)
db-ch (exec-customer-query db :all)]
(go-loop []
(when-let [customer (<! db-ch)]
(>! ch customer)
(recur)))
ch))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment