7

Is there a timer or interval function in Crystal?

I checked the docs for a timer, interval, and under the Time class, but did not see anything.

Something like setInterval() or setTimeout() from JavaScript?

dkimot
  • 2,239
  • 4
  • 17
  • 25

2 Answers2

8

For timeout there's delay. Please be aware that the API for this isn't finalized and might get changed in a future release or even temporarily removed again.

For interval there's currently nothing that guarantees exact timings, but if that's no concern and an approximate interval is enough it's as simple to do as

spawn do
  loop do
    sleep INTERVAL
    do_regular_work
  end
end

sleep # Or some other workload, when the main fiber quits so will the program and thus all other fibers.
Jonne Haß
  • 4,792
  • 18
  • 30
  • Addition: `delay` is actually an implementation of a future object, so it can return a value and be cancelled. If you don't need these features, you should just use `spawn` + `sleep` instead. – Johannes Müller Mar 19 '18 at 18:31
  • Note that `delay` has been removed in the 0.35.0 release: https://crystal-lang.org/2020/06/09/crystal-0.35.0-released.html (Background: https://github.com/crystal-lang/crystal/pull/9093 ) – Philipp Claßen Aug 13 '20 at 20:24
0

https://github.com/hugoabonizio/schedule.cr

require "schedule"

# Print "Hello!" each 2 seconds
Schedule.every(2.seconds) do
  puts "Hello!"
end

sleep
Peter Bauer
  • 284
  • 2
  • 7