module ResqueDuplicateless
We are going to make a extension that kludges a couple of methods into the Resque
main object
We need to kludge in the method to uniquely add an item into a queue
This is a little bit complicated because of how Resque
is built. It uses an internal object known as the QueueAccess object to actually interact with the queues. Because of this, we want to extend those objects to follow their practices
We have to overload the Job function to manufacture a new “create_with_options” method
This method will allow us to actually perform the correct type of queuing, IE whether
we want to do a unique enqueue or not
Constants
- VERSION