# File lib/taps/chunksize.rb, line 30
  def time_delta
    t1 = Time.now
    yield if block_given?
    t2 = Time.now
    t2 - t1
  end