Exposes namespaced Key-Value Stores you can access inside of your Jobs.
store.env
to access and store data within the Environmentstore.job
to access and store data within the Jobstore.run
to access and store data within the Runstore.run
.
To share data across Runs you can use store.job
:
store.env
instead:
delete()
run()
. See
resumability for more information.key
of the item to delete.Promise
that resolves when the item has been deleted.
has()
run()
. See
resumability for more information.key
of the item to check existence of.Promise
that resolves to a boolean
value indicating existence.
get()
run()
. See
resumability for more information.key
of the item to retrieve.Promise
that resolves to the stored value or undefined
if missing.
set()
run()
. See
resumability for more information.key
of the item to store.value
to store.Promise
that resolves to the stored value.