class Appom::Wait
Constants
- DEFAULT_INTERVAL
- DEFAULT_TIMEOUT
Public Class Methods
new(opts = {})
click to toggle source
Create a new Wait
instance
@param [Hash] opts Options for this instance @option opts [Numeric] :timeout (5) Seconds to wait before timing out. @option opts [Numeric] :interval (0.25) Seconds to sleep between polls.
# File lib/appom/wait.rb, line 13 def initialize(opts = {}) @timeout = opts.fetch(:timeout, DEFAULT_TIMEOUT) @interval = opts.fetch(:interval, DEFAULT_INTERVAL) end
Public Instance Methods
until() { || ... }
click to toggle source
Wait
until the given block returns a true value.
@raise [Error::TimeOutError] @return [Object] the result of the block
# File lib/appom/wait.rb, line 24 def until end_time = Time.now + @timeout error_message = "" until Time.now > end_time begin result = yield return result if result rescue => error error_message = error.message end sleep @interval end raise StandardError, error_message end