Create a cron job that will periodically execute the provided handler callback based on the specified schedule.
Open a new Deno.Kv
connection to persist data.
A check to perform as part of a Deno.AtomicOperation
. The check
will fail if the versionstamp for the key-value pair in the KV store does
not match the given versionstamp. A check with a null
versionstamp checks
that the key-value pair does not currently exist in the KV store.
CronSchedule is the interface used for JSON format
cron schedule
.
Options for listing key-value pairs in a Deno.Kv
.
CronScheduleExpression is used as the type of minute
, hour
,
dayOfMonth
, month
, and dayOfWeek
in CronSchedule
.
Consistency level of a KV operation.
An optional versioned pair of key and value in a Deno.Kv
.
A key to be persisted in a Deno.Kv
. A key is a sequence
of Deno.KvKeyPart
s.
A single part of a Deno.KvKey
. Parts are ordered
lexicographically, first by their type, and within a given type by their
value.
A selector that selects the range of data returned by a list operation on a
Deno.Kv
.
A mutation to a key in a Deno.Kv
. A mutation is a
combination of a key, a value, and a type. The type determines how the
mutation is applied to the key.