I am completely stuck!!!
This one is working in my controller, BUT NOT as a delayed_job:
def checkall
#check all entries for updates as delayed_job
create_report #should run my method below asynchronously
end
def create_report
#this creates my report, but not working delayed!
end
handle_asynchronously :create_report, :priority => 3
So maybe the caching approach is really a better solution ;-)
How can I cache the page I need as a delayed_job?
I need to complete the 'checkall' method before creating my report!
Sebastian
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.