@ -16,7 +16,8 @@ class job(object): # noqa
def __init__ ( self , queue , connection = None , timeout = None ,
def __init__ ( self , queue , connection = None , timeout = None ,
result_ttl = DEFAULT_RESULT_TTL , ttl = None ,
result_ttl = DEFAULT_RESULT_TTL , ttl = None ,
queue_class = None , depends_on = None , at_front = None , meta = None ) :
queue_class = None , depends_on = None , at_front = None , meta = None ,
description = None ) :
""" 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
@ -37,6 +38,7 @@ class job(object): # noqa
self . meta = meta
self . meta = meta
self . depends_on = depends_on
self . depends_on = depends_on
self . at_front = at_front
self . at_front = at_front
self . description = description
def __call__ ( self , f ) :
def __call__ ( self , f ) :
@wraps ( f )
@wraps ( f )
@ -59,6 +61,6 @@ class job(object): # noqa
return queue . enqueue_call ( f , args = args , kwargs = kwargs ,
return queue . enqueue_call ( f , args = args , kwargs = kwargs ,
timeout = self . timeout , result_ttl = self . result_ttl ,
timeout = self . timeout , result_ttl = self . result_ttl ,
ttl = self . ttl , depends_on = depends_on , at_front = at_front ,
ttl = self . ttl , depends_on = depends_on , at_front = at_front ,
meta = self . meta )
meta = self . meta , description = self . description )
f . delay = delay
f . delay = delay
return f
return f