Akka Documentation

Version 1.1.3

PDF

«  Third-party Integrations   ::   Contents   ::   Feature Stability Matrix  »

Other Language Bindings

JRuby

High level concurrency using Akka actors and JRuby.

https://github.com/danielribeiro/RubyOnAkka

If you are using STM with JRuby then you need to unwrap the Multiverse control flow exception as follows:

begin
    ... atomic stuff
rescue NativeException => e
   raise e.cause if e.cause.java_class.package.name.include? "org.multiverse"
end

«  Third-party Integrations   ::   Contents   ::   Feature Stability Matrix  »