timer

A

angico

[Note: parts of this message were removed to make it a legal post.]

Hi, All.

Can anybody tell me how to implement kind of a timer in Ruby, similar to
the following one from Java?

timer = new Timer( 200, handler ); // call handler each 200 milliseconds


Thank you,
 
R

Robert Klemme

[Note: parts of this message were removed to make it a legal post.]

Hi, All.

Can anybody tell me how to implement kind of a timer in Ruby, similar to
the following one from Java?

timer = new Timer( 200, handler ); // call handler each 200 milliseconds

Here's a simple one

#!/bin/env ruby

require 'monitor'

class Timer
def initialize(interval, &handler)
raise ArgumentError, "Illegal interval" if interval < 0
extend MonitorMixin
@run = true
@th = Thread.new do
t = Time.now
while run?
t += interval
(sleep(t - Time.now) rescue nil) and
handler.call rescue nil
end
end
end

def stop
synchronize do
@run = false
end
@th.join
end

private

def run?
synchronize do
@run
end
end
end

t = Timer.new(1) do
puts "tick #{Time.now.to_f}"
# random sleep to show slot stability
sleep((5 + rand(10))/10.0)
end

sleep 10
t.stop
 
B

Brian Candler

angico said:
Hi, All.

Can anybody tell me how to implement kind of a timer in Ruby, similar to
the following one from Java?

timer = new Timer( 200, handler ); // call handler each 200 milliseconds

If your handler is short and you don't care too much about accuracy:

Thread.new { loop { handler; sleep 0.2 } }
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,171
Messages
2,570,935
Members
47,472
Latest member
KarissaBor

Latest Threads

Top