Exception: Timeout::Error
Overview
Raised by Timeout#timeout when the block times out.
Instance Attribute Summary collapse
-
#thread ⇒ Object
readonly
Returns the value of attribute thread.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#thread ⇒ Object (readonly)
Returns the value of attribute thread
28 29 30 |
# File 'lib/timeout.rb', line 28 def thread @thread end |
Class Method Details
.catch(*args) ⇒ Object
30 31 32 33 34 |
# File 'lib/timeout.rb', line 30 def self.catch(*args) exc = new(*args) exc.instance_variable_set(:@thread, Thread.current) ::Kernel.catch(exc) {yield exc} end |
Instance Method Details
#exception ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/timeout.rb', line 36 def exception(*) # TODO: use Fiber.current to see if self can be thrown if self.thread == Thread.current bt = caller begin throw(self, bt) rescue UncaughtThrowError end end self end |