Akka: simpler Scalability, Fault-Tolerance, Concurrency & Remoting through Actors
Akka is the platform for the next generation event-driven, scalable and fault-tolerant architectures on the JVM.
Scala Example:
// creates an actor on the remote node val service = actor("remote.node", 9999) { case fun => reply(fun()) } // creates a processing function val processingFun = () => ... // sends function to remote node service ! processingFun
