mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
19 lines
302 B
Ruby
19 lines
302 B
Ruby
![]() |
module Sidetiq
|
||
|
module Actor
|
||
|
def self.included(base)
|
||
|
base.__send__(:include, Celluloid)
|
||
|
end
|
||
|
|
||
|
def initialize(*args, &block)
|
||
|
log_call "initialize"
|
||
|
super
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def log_call(call)
|
||
|
info "#{self.class.name} id: #{object_id} #{call}"
|
||
|
end
|
||
|
end
|
||
|
end
|