class Appium::Core::Wait::Timer

def current_time

def current_time
  Process.clock_gettime(Process::CLOCK_MONOTONIC)
end

def current_time

def current_time
  ::Time.now.to_f
end

def initialize(timeout)

def initialize(timeout)
  @end_time = current_time + timeout
end

def timeout?

def timeout?
  current_time > @end_time
end