Displaying 3 results from an estimated 3 matches for "echo_valu".
Did you mean:
echo_val
2007 Dec 22
0
[Fwd: Re: what happened to get_worker?]
...hod is gone. I am trying to create multiple instances of
>> the same worker and retrieve the status of them using the job key:
>>
>> To create the worker, I do:
>>
>> @worker = MiddleMan.new_worker(:worker => :bar_worker,
>> :worker_method => :echo_value,
>> :job_key => @job_key,
>> :data => {:param1 => ''val1'',:param2 => ''val2'' })
>>
>>
>> To retrieve the worker, I have tried:
>>
>> @worker = MiddleMan.ask_status(:worker => :bar_work...
2007 Dec 21
7
Using my models
I''m working on upgrading my app to the latest version of backgroundrb.
Everything went find until I tried to execute my tasks.
Here is my simple worker for testing:
class MscWorker < BackgrounDRb::MetaWorker
set_worker_name :msc_worker
def create(args = nil)
# this method is called, when worker is loaded for the first time
end
# Send a message to everyone
def
2005 Mar 29
7
Fade Anything Technique (FAT)
Has anyone used the built in FAT (Fade Anything Technique) that exists in 0.11.1
of Rails? I could not find anything in the documentation so I was wondering if
anyone has any code snippets on how they used it?
Thanks for your help.
John