Hello everyone, I'm developing a distributed system using scalatra and akka actors. In my design I have 5 actors types: EventActor[1-4] and a SenderActor that is an http sender that register in other places the handled events. Each of these actors are router actors<http://doc.akka.io/docs/akka/snapshot/scala/routing.html>. The EventActors just receive the events and package them into meaningful json objects and then tell the SenderActor which sends it to the right place.
The number of sender actors are in meaning of EventActors, i.e., TotalSenderActors = EventActors1 + EventActors2 + EventActors3 + EventActors4 The actors definition can be found in here <http://pastebin.com/N4XZJGXw>. The system definition can be found in here <http://pastebin.com/DNUZEQPY>. The problem is that the execution of the code is throwing an exception, the stack trace can be found in here <http://pastebin.com/ZEtXH3XL>. My guess is that the use of a router calling another router is messing around with the BatchingExecutor. Any clues? thanks in advance. -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/groups/opt_out.
