Created
November 23, 2009 16:23
-
-
Save shawn42/241150 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MeteorManager < Actor | |
def setup | |
@meteors = [] | |
count = @opts[:count] | |
count.times do | |
@meteors << spawn :meteor | |
end | |
end | |
def method_missing(it,*args) | |
@meteors.each do |m| | |
m.send it, *args | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
man = spawn :meteor_manager, :count => 40 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment