Implement upcoming query on store

This commit is contained in:
lash
2022-03-13 15:45:48 +00:00
parent a6e48d93a8
commit 04dfb185ce
2 changed files with 13 additions and 1 deletions

View File

@@ -95,3 +95,8 @@ class Store:
entry.retry()
except StateTransitionInvalid:
entry.readysend()
def fail(self, k):
entry = QueueEntry(self, k)
entry.reject()