Method: Resque#inline

Defined in:
lib/resque.rb

#inlineBoolean

If ‘inline’ is true Resque will call #perform method inline without queuing it into Redis and without any Resque callbacks. The ‘inline’ is false Resque jobs will be put in queue regularly.

Returns:

  • (Boolean)


158
159
160
# File 'lib/resque.rb', line 158

def inline?
  @inline
end