search for: normelton

Displaying 3 results from an estimated 3 matches for "normelton".

2008 Jan 29
5
Authoritative Documentation
I''ve been using backgroundrb for... about an hour now. I must say, I''m impressed. But I''m a bit stumped on where to find the "official" documentation. There''s an API online at backgroundrb.rubyforge.org, but I don''t see the methods available for MiddleMan, etc. Right now, I''m trying to figure out how to get a list of all
2008 Feb 01
3
Job Queue
After some initial stumblings, I think I''ve got the hang of backgroundrb. It''s great! I''d been thinking for many many months how cool something like this would be! I''m trying to make a "job queue". That is, a pool of worker threads monitor a queue. When a job appears, one of the workers grabs it and executes the task. When complete, the worker
2008 Apr 04
0
Bug in meta_worker.rb
I propose changing meta_worker.rb line 240 from: result = "dummy_result" unless result to result = "dummy_result" unless defined?(result) If my worker is returning false, I get "dummy_result" instead. Thanks! Norman