本文整理汇总了Python中celery.result.EagerResult类的典型用法代码示例。如果您正苦于以下问题:Python EagerResult类的具体用法?Python EagerResult怎么用?Python EagerResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了EagerResult类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_sync_subtask_option
def test_get_sync_subtask_option(self, task_join_will_block):
task_join_will_block.return_value = True
tid = uuid()
res_subtask_async = EagerResult(tid, 'x', 'x', states.SUCCESS)
with pytest.raises(RuntimeError):
res_subtask_async.get()
res_subtask_async.get(disable_sync_subtasks=False)
示例2: done
def done(self):
if self.task_id:
if getattr(settings, 'CELERY_ALWAYS_EAGER', False):
result = EagerResult(self.task_id, None, 'SUCCESS')
else:
result = AsyncResult(self.task_id)
return result.ready()
示例3: test_forget
def test_forget(self):
res = EagerResult('x', 'x', states.RETRY)
res.forget()
示例4: test_wait
def test_wait(self):
res = EagerResult('x', 'x', states.RETRY)
res.wait()
assert res.state == states.RETRY
assert res.status == states.RETRY
示例5: test_wait
def test_wait(self):
res = EagerResult('x', 'x', states.RETRY)
res.wait()
self.assertEqual(res.state, states.RETRY)
self.assertEqual(res.status, states.RETRY)