Object
Supervisors are actors that watch over other actors and restart them if they crash
Define the root of the supervision tree
# File lib/celluloid/supervisor.rb, line 9 def supervise(klass, *args, &block) SupervisionGroup.new do |group| group.supervise klass, *args, &block end end
# File lib/celluloid/supervisor.rb, line 15 def supervise_as(name, klass, *args, &block) SupervisionGroup.new do |group| group.supervise_as name, klass, *args, &block end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.