brandonhilkert / sucker_punch

Sucker Punch is a Ruby asynchronous processing library using concurrent-ruby, heavily influenced by Sidekiq and girl_friday.
MIT License
2.64k stars 114 forks source link

Schedule delayed job #76

Closed Nowaker closed 10 years ago

Nowaker commented 10 years ago

I like the idea of Sucker Punch using Celluloid to run jobs in the same process. However, it doesn't support many features that other queues support, delayed execution being the most important one.

brandonhilkert commented 10 years ago

While it's not in the ActiveJob interface, the gem has the options. There's nothing stopping you from using the native gem features in the meantime.

brandonhilkert commented 10 years ago

https://github.com/brandonhilkert/sucker_punch#perform-in

Nowaker commented 10 years ago

Cool! In such case what I can only do is to encourage you to contribute to Active Job and implement missing parts. :-)