From: Thai Le Date: 2007-02-07T13:14:30+09:00 Subject: Re: is there any timing class in the standard lib? Daniel Sheppard wrote: > If you really want your process to sit around, either use sleep(60*60) > or if you need more accuracy than that, do some calculations with > DateTime to figure out how long it will be till the next hour mark. Thanks 4 your advice but this's part of the requirements, I have no access to system util. For testing, i try --------------------------- class RSSdeamon def start puts "deamon started" while true sleep(5) puts "deamon running" end end end myProc = RSSdeamon.new() myProc.start --------------------------- It doesnt print even a single line. Am I missing something in concurrent programming? -- Posted via http://www.ruby-forum.com/.