|
|
@ -1,11 +1,12 @@
|
|
|
|
from functools import wraps
|
|
|
|
from functools import wraps
|
|
|
|
from .queue import Queue
|
|
|
|
from .queue import Queue
|
|
|
|
from .connections import resolve_connection
|
|
|
|
from .connections import resolve_connection
|
|
|
|
|
|
|
|
from .worker import DEF_TTL
|
|
|
|
|
|
|
|
|
|
|
|
class job(object):
|
|
|
|
class job(object):
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, queue, connection=None, timeout=None):
|
|
|
|
def __init__(self, queue, connection=None, timeout=None,
|
|
|
|
|
|
|
|
result_ttl=DEF_TTL):
|
|
|
|
"""A decorator that adds a ``delay`` method to the decorated function,
|
|
|
|
"""A decorator that adds a ``delay`` method to the decorated function,
|
|
|
|
which in turn creates a RQ job when called. Accepts a required
|
|
|
|
which in turn creates a RQ job when called. Accepts a required
|
|
|
|
``queue`` argument that can be either a ``Queue`` instance or a string
|
|
|
|
``queue`` argument that can be either a ``Queue`` instance or a string
|
|
|
@ -20,6 +21,7 @@ class job(object):
|
|
|
|
self.queue = queue
|
|
|
|
self.queue = queue
|
|
|
|
self.connection = resolve_connection(connection)
|
|
|
|
self.connection = resolve_connection(connection)
|
|
|
|
self.timeout = timeout
|
|
|
|
self.timeout = timeout
|
|
|
|
|
|
|
|
self.result_ttl = result_ttl
|
|
|
|
|
|
|
|
|
|
|
|
def __call__(self, f):
|
|
|
|
def __call__(self, f):
|
|
|
|
@wraps(f)
|
|
|
|
@wraps(f)
|
|
|
@ -29,6 +31,6 @@ class job(object):
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
queue = self.queue
|
|
|
|
queue = self.queue
|
|
|
|
return queue.enqueue_call(f, args=args, kwargs=kwargs,
|
|
|
|
return queue.enqueue_call(f, args=args, kwargs=kwargs,
|
|
|
|
timeout=self.timeout)
|
|
|
|
timeout=self.timeout, result_ttl=self.result_ttl)
|
|
|
|
f.delay = delay
|
|
|
|
f.delay = delay
|
|
|
|
return f
|
|
|
|
return f
|
|
|
|