Tagged Questions

13
votes
1answer
1k views

How Clojure's agents compare to Scala's actors?

I wrote a simulation of the Ring network topology in Scala (source here) (Scala 2.8 RC7) and Clojure (source here) (Clojure 1.1) for a comparison of Actors and Agents. While the Scala version shows ...
6
votes
4answers
479 views

Multithreaded bouncing balls program using agents in Clojure

I have written a multithreaded bouncing balls program in clojure. After starting the animation thread, I do- (send-balls) to start the bouncing balls threads. The balls dont move and this is ...
6
votes
1answer
420 views

What is the difference between Clojure's “send” and “send-off” functions with respect to dispatching an action to an agent?

The Clojure API describes these two functions as: (send a f & args) - Dispatch an action to an agent. Returns the agent immediately. Subsequently, in a thread from a thread pool, the state of ...
3
votes
1answer
184 views

How can I stop a specific agent in Clojure? When are their states garbage-collected?

If an agent is working through its queue in the background in Clojure, how can I stop it without stopping all agents? When I am finished with an agent and I let it fall out of scope AND it finishes ...
1
vote
2answers
195 views

Clojure Agent question - using send-off

I have a couple of questions about the following code: (import '(java.awt Color Graphics Dimension) '(java.awt.image BufferedImage) '(javax.swing JPanel JFrame)) (def width 900) (def height 600) ...