pekko/akka-docs/pending/language-bindings.rst
2011-04-09 19:55:46 -06:00

24 lines
511 B
ReStructuredText

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:
.. code-block:: ruby
begin
... atomic stuff
rescue NativeException => e
raise e.cause if e.cause.java_class.package.name.include? "org.multiverse"
end
Groovy/Groovy++
===============
`<https://gist.github.com/620439>`_