Class: Event::Result
- Inherits:
-
Object
- Object
- Event::Result
- Defined in:
- lib/a-commons.rb
Instance Attribute Summary collapse
-
#sender ⇒ Object
readonly
Returns the value of attribute sender.
-
#time ⇒ Object
readonly
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize(_sender, _args = nil) ⇒ Result
constructor
A new instance of Result.
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
#sender ⇒ Object (readonly)
Returns the value of attribute sender.
633 634 635 |
# File 'lib/a-commons.rb', line 633 def sender @sender end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
634 635 636 |
# File 'lib/a-commons.rb', line 634 def time @time end |