Links

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.

http://www.akkasource.org/

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

Filed under  //   actors   concurrency   java   scala  
Posted May 28, 2010 by email