Pinned Loading
-
encapsulate sucker punch queueing to...
encapsulate sucker punch queueing to act same as delayed job or any other async task runner 1class InProcessJob
2unless Rails.env.test?
3include SuckerPunch::Job
4workers 1
5end
-
asynchronous awaited execution in ev...
asynchronous awaited execution in event machine 1def execute_awaited
2fiber = Fiber.current
3execute # run some non blocking code (return immidiatly)
4self.callback do |response|
5EventMachine.schedule do
-
Implement distributed workflow over ...
Implement distributed workflow over delayed job mongoid 1class JobListItem
2include Mongoid::Document
3include Mongoid::Timestamps::Created
45belongs_to :next_job, :class_name => "JobListItem", :inverse_of => :prev_job, optional: true
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.