Method: QC.method_missing

Defined in:
lib/queue_classic.rb

.method_missing(sym, *args, &block) ⇒ Object

Defer method calls on the QC module to the default queue. This facilitates QC.enqueue()



36
37
38
# File 'lib/queue_classic.rb', line 36

def self.method_missing(sym, *args, &block)
  default_queue.send(sym, *args, &block)
end