Skip to content

Instantly share code, notes, and snippets.

@schmee
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schmee/6d6bbeff46a40c28a7ac to your computer and use it in GitHub Desktop.
Save schmee/6d6bbeff46a40c28a7ac to your computer and use it in GitHub Desktop.
(defn sloop [socket msg-fn]
(try
(let [reader (io/reader socket)]
(loop []
(when-let [msg (.readLine reader)]
(do
(msg-fn msg)
(recur)))))
(catch SocketException e (println "socket closed"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment