Method: TkRTTimer#start

Defined in:
ext/lib/tk/timer.rb

#start(*args, &b) ⇒ Object



552
553
554
555
556
557
# File 'ext/lib/tk/timer.rb', line 552

def start(*args, &b)
  return nil if @running
  @est_time = nil
  @cb_start_time = Time.now
  super(*args, &b)
end