--
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/akka-user?hl=en.
Hi Jussi,A good friend of mine, lets call him The Doc once told me:"Thus, keep in mind that the CallingThreadDispatcher is not a general-purpose replacement for the normal dispatchers. On the other hand it may be quite useful to run your actor network on it for testing, because if it runs without dead-locking chances are very high that it will not dead-lock in production."(transcription: http://doc.akka.io/docs/akka/2.0.1/scala/testing.html#Limitations)It you want to run on one thread only, you're SOL since the Scheduler uses a dedicated thread. BUT you can make the default dispatcher only have 1 thread and not configure any others.
There's much needed ticket to fix in the Performance backlog ;-)