Class: Event::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/a-commons.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(_sender, _args = nil) ⇒ Result

Returns a new instance of Result.



635
636
637
638
639
640
641
642
643
# File 'lib/a-commons.rb', line 635

def initialize(_sender, _args=nil)
  @sender = _sender
  if _args
    _args.each do |key, value|
      self.send(key+'=', value)
    end
  end
  @time = Time.new
end

Instance Attribute Details

#senderObject (readonly)

Returns the value of attribute sender.



633
634
635
# File 'lib/a-commons.rb', line 633

def sender
  @sender
end

#timeObject (readonly)

Returns the value of attribute time.



634
635
636
# File 'lib/a-commons.rb', line 634

def time
  @time
end