Timeout — Documentation by YARD 0.9.37 (original) (raw)
Module: Mongo::TimeoutPrivate
Defined in:
lib/mongo/timeout.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Class Method Summarycollapse
- .timeout(sec, klass = nil, message = nil) ⇒ Object private
A wrapper around Ruby core’s Timeout::timeout method that provides a standardized API for Ruby versions older and newer than 2.4.0, which is when the third argument was introduced.
Class Method Details
.timeout(sec, klass = nil, message = nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A wrapper around Ruby core’s Timeout::timeout method that provides a standardized API for Ruby versions older and newer than 2.4.0, which is when the third argument was introduced.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | # File 'lib/mongo/timeout.rb', line 33 def timeout(sec, klass=nil, message=nil) if message && RUBY_VERSION < '2.94.0' begin ::Timeout.timeout(sec) do yield end rescue ::Timeout::Error raise klass, message end else optional_args = [klass, message].compact ::Timeout.timeout(sec, *optional_args) do yield end end end |
---|