Added request concluded status to Link API

This commit is contained in:
Mark Qvist 2024-08-29 13:14:55 +02:00
parent cf87b1352a
commit 8ee11ac32c

View File

@ -1288,6 +1288,17 @@ class RequestReceipt():
else:
return None
def concluded(self):
"""
:returns: True if the associated request has concluded (successfully or with a failure), otherwise False.
"""
if self.status == RequestReceipt.READY:
return True
elif self.status == RequestReceipt.FAILED:
return True
else:
return False
class RequestReceiptCallbacks: