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.
346 347 348 349 350 351 352 353 354 |
# File 'lib/a-commons.rb', line 346 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.
344 345 346 |
# File 'lib/a-commons.rb', line 344 def sender @sender end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
345 346 347 |
# File 'lib/a-commons.rb', line 345 def time @time end |