Clojure best way to achieve multiple threads?
Posted
by user286702
on Stack Overflow
See other posts from Stack Overflow
or by user286702
Published on 2010-03-30T19:16:57Z
Indexed on
2010/03/30
19:23 UTC
Read the original article
Hit count: 387
Hello! I am working on a MUD client written in Clojure. Right now, I need two different threads. One which receives input from the user and sends it out to the MUD (via a simple Socket), and one that reads and displays output from the MUD, to the user.
Should I just use Java Threads, or is there some Clojure-specific feature I should be turning to?
© Stack Overflow or respective owner