If you want to sequence the jobs why not just make it one job where the second "job" is just a method call? One important purpose of asynchronous jobs like this is to get them out of the way of a main loop. By making it one job you've done that so there's no obvious (so far) pressure to punt the other one since you're not in that main loop any more.
Your pseudo code leaves me with more questions than answers so maybe explain what you're trying to actually do? On Tue, Jun 16, 2015 at 10:49 AM, amtest <[email protected]> wrote: > > I have one sudo code here, using delayedjob with rails, actually tired > but in some cases it getting weird, i want to call the first delay and > after that is finished, then only start second delay, so i have used the > priority. Is this the proper way to do this or is anything wrong? > > class Core > def foo > priority = 0 > if condition1 > if condition2 > self.delay(priority: priority).foo1(priority) > end > self.delay(priority: priority).foo1(priority) > end > end > > def foo1(priority) > if condition1 > if condition2 > priority +=1 > self.delay(priority: priority).foo1(priority) > end > priority +=1 > self.delay(priority: priority).foo1(priority) > end > endend > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/76889966-18f5-40b7-a112-036a18679f83%40googlegroups.com > <https://groups.google.com/d/msgid/rubyonrails-talk/76889966-18f5-40b7-a112-036a18679f83%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAMEJyitHrxuO7r2pm0TrrS5cjd0XLuyEJcLNhwjoyNwQp7Y0RQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

