Categories: None [Edit]

cadence

https://rubygems.org/gems/cadence
https://github.com/mtodd/cadence
Track counts and compute rate of iteration. Set up callbacks for various intervals such as every n increments or every n ticks. computer = Cadence::Computer.new do |c| c.every 5 do p [:completed_processing, n] end end computer.start do |c| 1.upto(100) do |n| c.next # do magic here end end Mostly intended for providing intermitent feedback of the progress of tasks that will run for lengthy periods of time. Rudimentary support for time-based callbacks is possible through #ticks.

Total

Ranking: 75,750 of 180,530
Downloads: 10,728

Daily

Ranking: 95,592 of 180,517
Downloads: 0

Depended by

RankDownloadsName

Depends on

RankDownloadsName

Owners

#GravatarHandle
1iconmtodd