celery.result
Pending task result using the default backend.
Base class for pending result, takes backend argument.
Returns True if the task executed successfully.
Return type: | bool |
---|
Returns True if the task executed successfully, or raised an exception. If the task is still pending, or is waiting for retry then False is returned.
Return type: | bool |
---|
Return the result when it arrives.
If timeout is not None and the result does not arrive within timeout seconds then celery.backends.base.TimeoutError is raised. If the remote call raised an exception then that exception will be reraised by get().