class FistOfFury::Supervisor

Public Class Methods

clock() click to toggle source
# File lib/fist_of_fury/supervisor.rb, line 10
def clock
  run! if Celluloid::Actor[:fist_of_fury_clock].nil?
  Celluloid::Actor[:fist_of_fury_clock]
end
dispatcher() click to toggle source
# File lib/fist_of_fury/supervisor.rb, line 15
def dispatcher
  run! if Celluloid::Actor[:fist_of_fury_dispatcher].nil?
  Celluloid::Actor[:fist_of_fury_dispatcher]
end
run!() click to toggle source
Calls superclass method
# File lib/fist_of_fury/supervisor.rb, line 20
def run!
  info 'FistOfFury::Supervisor start'
  super
end