Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
add.apply_async((1, 2), countdown=5, link=delete.subtask())
如何在删除子任务上添加自定义延迟,将添加任务的结果作为参数传递?
这种语法/格式有可能吗?
好的,我找到了解决方案
add.apply_async((1, 2), countdown=2, link=delete.subtask((), countdown=10))