Writing applications with Scala actors in practice II [closed]
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Because my first question was so long, I'm asking this as a separate question. It's another one about the architecture of an actor-based application. Keeping track of message paths through an Application Let's take a piece of Java code: public void deleteTrades(User user, Date date) { PermissionSet ps = permissionService.findPermissions(user) if (ps.hasPermission("delete")) { Set<Trade> ts = peristence.findTrades(date);