Spawn an thread that sets itself as the current
connection's :repl-thread and then enters an eval-loop
(defn spawn-repl-thread
"Spawn an thread that sets itself as the current
connection's :repl-thread and then enters an eval-loop"
([conn]
(dothread-swank
(thread-set-name "Swank REPL Thread")
(with-connection conn
(eval-loop)))))
Comments top
No comments for spawn-repl-thread. Log in to add a comment.