Module: FistOfFury::Actor
- Included in:
- Clock, Dispatcher
- Defined in:
- lib/fist_of_fury/actor.rb,
lib/fist_of_fury/actor/clock.rb,
lib/fist_of_fury/actor/dispatcher.rb
Defined Under Namespace
Classes: Clock, Dispatcher
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.included(base) ⇒ Object
3
4
5
6
|
# File 'lib/fist_of_fury/actor.rb', line 3
def self.included(base)
base.__send__(:include, Celluloid)
base.finalizer :fist_of_fury_finalizer
end
|
Instance Method Details
#initialize(*args, &block) ⇒ Object
8
9
10
11
|
# File 'lib/fist_of_fury/actor.rb', line 8
def initialize(*args, &block)
log_call 'initialize'
super
end
|