mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
bde6547bb6
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
23 lines
589 B
Ruby
23 lines
589 B
Ruby
require "queue_classic"
|
|
|
|
module QC
|
|
class Queue
|
|
def enqueue(method, *args)
|
|
receiver_str, _, message = method.rpartition(".")
|
|
receiver = eval(receiver_str)
|
|
receiver.send(message, *args)
|
|
end
|
|
|
|
def enqueue_in(seconds, method, *args)
|
|
receiver_str, _, message = method.rpartition(".")
|
|
receiver = eval(receiver_str)
|
|
receiver.send(message, *args)
|
|
end
|
|
|
|
def enqueue_at(not_before, method, *args)
|
|
receiver_str, _, message = method.rpartition(".")
|
|
receiver = eval(receiver_str)
|
|
receiver.send(message, *args)
|
|
end
|
|
end
|
|
end
|