Class: Gruf::Timer::Result
- Inherits:
-
Object
- Object
- Gruf::Timer::Result
- Defined in:
- lib/gruf/timer.rb
Overview
Represents a timer result that contains both the elapsed time and the result of the block
result = Timer.time { do_my_thing }
result.time # => 1.10123
result.result # => 'my_thing_is_done'
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
44 45 46 47 |
# File 'lib/gruf/timer.rb', line 44 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.
34 35 36 |
# File 'lib/gruf/timer.rb', line 34 def result @result end |
#time ⇒ Float (readonly)
Returns time The time, in ms, of the block execution.
36 37 38 |
# File 'lib/gruf/timer.rb', line 36 def time @time end |
Instance Method Details
#success? ⇒ Boolean
Was this result a successful result?
54 55 56 |
# File 'lib/gruf/timer.rb', line 54 def success? !result.is_a?(GRPC::BadStatus) && !result.is_a?(StandardError) && !result.is_a?(GRPC::Core::CallError) end |