Sha256: 7645dd77636fb0a269491dd6ddb184e7dc13b9ba7e9ff00052eda7b485e374bf

Contents?: true

Size: 588 Bytes

Versions: 7077

Compression:

Stored size: 588 Bytes

Contents

class   ProgressBar
class   Throttle
  attr_accessor :rate,
                :started_at,
                :stopped_at,
                :timer

  def initialize(options = {})
    self.rate       = options[:throttle_rate] || 0.01
    self.started_at = nil
    self.stopped_at = nil
    self.timer      = options.fetch(:throttle_timer, Timer.new)
  end

  def choke(options = {})
    return unless !timer.started?                        ||
                  options.fetch(:force_update_if, false) ||
                  timer.elapsed_seconds >= rate

    timer.restart

    yield
  end
end
end

Version data entries

7,077 entries across 7,025 versions & 64 rubygems

Version Path
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb
progressbar-1.9.0 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.9.0 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.8.3 lib/ruby-progressbar/throttle.rb
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/ruby-progressbar-1.8.1/lib/ruby-progressbar/throttle.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/ruby-progressbar-1.8.1/lib/ruby-progressbar/throttle.rb
progressbar-1.8.2 lib/ruby-progressbar/throttle.rb
progressbar-1.8.1 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.8.1 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.8.0 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.7.5 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.7.1 lib/ruby-progressbar/throttle.rb
ruby-progressbar-1.7.0 lib/ruby-progressbar/throttle.rb