我正在使用此gem作为我的申请。我找不到我需要的参数。我的控制器中有两个功能:创建和分析。
我想在调用create-method后5分钟后运行analyse-method
要么
我在模型中还有一个功能:进程
我希望在5分钟后运行anylse-method
(来自控制器),同时调用一个进程方法。
我发现这样的smt:
handle_asynchronously :in_the_future, :run_at => Proc.new { 5.minutes.from_now }
但是它没有说明它应该被调用后。
修改
我试图推迟我的工作,它似乎保存了一切,问题是1分钟后它没有运行perform_analysis
方法。
可能是什么问题?
模型:
after_create :process_name, :perform_analysis
def perform_analysis
list=Analysis.do_picture_analyse
update_image_url(list)
end
handle_asynchronously :perform_analysis, :run_at => Proc.new { 1.minutes.from_now }
SQL(8.3ms)INSERT INTO“delayed_jobs”(“attempts”,“created_at”,“failed_at”,“handler”,“last_error”,“locked_at”,“locked_by”,“priority”,“queue”, “run_at”,“updated_at”)VALUES(?,?,?,?,?,?,?,?,?,?,?)[[“尝试”,0],[“created_at”,星期六,3月16日2013 14:30:19 UTC +00:00],[“failed_at”,nil],[“handler”,“---!ruby / object:Delayed :: PerformableMethod \ nobject:!ruby / ActiveRecord:Arraydb \ n属性:\ n id:45 \ n arraydb_file_name:ND2_CD8_133A.CEL \ n arraydb_content_type:!binary | - \ n YXBwbGljYXRpb24vb2N0ZXQtc3RyZWFt \ n arraydb_file_size:12110237 \ n已定义:'是'\ n患者:ND \ n组织:CD8 \ n刺激:\ n chip_image:\ n chip_info:\ n user_id:\ n hist:\ n hist_RMA:\ n created_at:2013-03-16 14:30:17.698742003 Z \ n updated_at:2013-03-16 14:30:19.297934640 Z \ nmethod_name :: perform_analysis_without_delay \ nargs:[] \ n“],[”last_error“,nil],[”locked_at“,nil],[”locked_by“,nil],[”priority“,0],[”队列“,nil”,[“run_at”,星期六,2013年3月16日14:31:19 UTC +00:00],[“updated_at”,星期六,2013年3月16日14:30:19 UTC +00:00]]
提前致谢
答案 0 :(得分:0)
您可以使用回调来触发该方法。这将触发方法:in_the_future
在作为延迟作业排队,在创建操作完成后运行5分钟。
after_create :in_the_future