Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created August 17, 2009 22:31
Show Gist options
  • Save kennethkalmer/169416 to your computer and use it in GitHub Desktop.
Save kennethkalmer/169416 to your computer and use it in GitHub Desktop.
# 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