Sha256: ffc393bae5ca552e590d90e7baea6970af965f42e88bdb21f8592f9d95a721c0

Contents?: true

Size: 1.04 KB

Versions: 10

Compression:

Stored size: 1.04 KB

Contents

module Watir
  module Wait
    class Timer
      def initialize(timeout: nil)
        @end_time = current_time + timeout if timeout
        @remaining_time = @end_time - current_time if @end_time
      end

      #
      # Executes given block until it returns true or exceeds timeout.
      # @param [Integer] timeout
      # @yield block
      # @api private
      #

      def wait(timeout, &block)
        end_time = @end_time || current_time + timeout
        loop do
          yield(block)
          @remaining_time = end_time - current_time
          break if @remaining_time.negative?
        end
      end

      def remaining_time
        @end_time - current_time
      end

      def reset!
        @end_time = nil
      end

      def locked?
        !@end_time.nil?
      end

      private

      if defined?(Process::CLOCK_MONOTONIC)
        def current_time
          Process.clock_gettime(Process::CLOCK_MONOTONIC)
        end
      else
        def current_time
          ::Time.now.to_f
        end
      end
    end # Timer
  end # Wait
end # Watir

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
watir-6.17.0 lib/watir/wait/timer.rb
watir-6.16.5 lib/watir/wait/timer.rb
watir-6.16.4 lib/watir/wait/timer.rb
watir-6.16.3 lib/watir/wait/timer.rb
watir-6.16.2 lib/watir/wait/timer.rb
watir-6.16.1 lib/watir/wait/timer.rb
watir-6.16.0 lib/watir/wait/timer.rb
watir-6.15.1 lib/watir/wait/timer.rb
watir-6.15.0 lib/watir/wait/timer.rb
watir-6.14.0 lib/watir/wait/timer.rb