APScheduler使用装饰器添加功能参考

时间:2015-08-17 11:18:26

标签: python python-decorators apscheduler

我试图用装饰器添加一个函数来调度它的执行但是我收到以下错误:

ValueError: This Job cannot be serialized since the reference to its callable (<function inner at 0x7f1c900527d0>) could not be determined. Consider giving a textual reference (module:function name) instead.

我的功能是

@my_decorator
def my_function(id=None):
   print id

我按如下方式添加:

my_scheduler.add_job(function, 'interval',minutes=1)

是否可以添加装饰器功能?有什么想法吗?

作为一种解决方法,我可以定义内部定义并调用我的装饰器,但我认为它是不好的解决方案,我更喜欢直接使用它

解决方法:

def outer(id=None):
   @my_decorator
   def my_function(id=None):
      print id

   my_function(id)

my_scheduler.add_job(outer, 'interval',minutes=1)

2 个答案:

答案 0 :(得分:0)

add_job()方法接受对callable的字符串引用。所以:

my_scheduler.add_job('the.module:my_function', 'interval', minutes=1)

答案 1 :(得分:0)

经过一些试验和错误,我已经成功完成了以下任务:

from functools import wraps

def my_decorator():
    def decorator(func):
        @wraps(func)
        def wrapper(*args, **kwargs):
            # do stuff
        return wrapper
    return decorator

现在,当apsScheduler

触发触发器时,会调用装饰器

问题在于@wraps我们处理天真的内省,即我们更新包装函数看起来像包装函数