Created
August 17, 2009 22:31
-
-
Save kennethkalmer/169416 to your computer and use it in GitHub Desktop.
This file contains 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
# multithreaded daemon example | |
# | |
# | |
# daemon_kit foo | |
# | |
# Two classes that do the work, they live in lib/ | |
# lib/foo.rb | |
class Foo | |
def run! | |
DaemonKit.logger.info "Hello from foo" | |
end | |
end | |
# lib/bar.rb | |
class Bar | |
def run! | |
DaemonKit.logger.info "Hello from bar" | |
end | |
end | |
# libexec/foo-daemon.rb | |
t1 = Foo.new.run! | |
t2 = Bar.new.run! | |
t1.join | |
t2.join | |
# Or spawning (double check rdocs on syntax here ) | |
#p1 = fork { Foo.new.run! } | |
#p2 = fork { Bar.new.run! } | |
#Process.wait( p1 ) | |
#Process.wait( p2 ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment