Class: Gruf::Timer::Result
- Inherits:
-
Object
- Object
- Gruf::Timer::Result
- Defined in:
- lib/gruf/timer.rb
Overview
Instance Attribute Summary collapse
-
#result ⇒ Object
readonly
Result The result of the block that was called.
-
#time ⇒ Float
readonly
Time The time, in ms, of the block execution.
Instance Method Summary collapse
-
#initialize(result, time) ⇒ Result
constructor
Initialize the result object.
-
#success? ⇒ Boolean
Was this result a successful result?.
Constructor Details
#initialize(result, time) ⇒ Result
Initialize the result object
42 43 44 45 |
# File 'lib/gruf/timer.rb', line 42 def initialize(result, time) @result = result @time = time.to_f end |
Instance Attribute Details
#result ⇒ Object (readonly)
Returns result The result of the block that was called.
32 33 34 |
# File 'lib/gruf/timer.rb', line 32 def result @result end |
#time ⇒ Float (readonly)
Returns time The time, in ms, of the block execution.
34 35 36 |
# File 'lib/gruf/timer.rb', line 34 def time @time end |