Skip to content
This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
/ akka Public archive
forked from biilmann/akka-and-jruby

akka + jruby = actors (concurrency without worrying about threads)

License

Notifications You must be signed in to change notification settings

ajokela/akka

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Using the Akka Actor Framework from JRuby - Now in Gem Form

Using the akka (Akka) gem from JRuby.

require 'rubygems' require 'akka'

class TestActor < Actor
  def onReceive(msg)
	puts "Got message: #{msg}"
  end
end

actor = TestActor.spawn

10.times do
  actor.sendOneWay("Hello Actor!")
end

About

akka + jruby = actors (concurrency without worrying about threads)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 87.9%
  • Shell 12.1%