pekko/akka-docs/additional/language-bindings.rst
Patrik Nordwall 2639344855 Docs: Moved from pending
(cherry picked from commit c10d94439dcca4bb9f08be2bc2f92442bb7b3cd4)
2011-05-06 10:12:05 +02: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>`_