Table State Operations

The State provider has table operations for storing state.

Set Table Values

Using a table name, you can store key-value pairs for retrieval later.

Method Signature

Setting Table Values

Increment Table Values

Using a table name and key, you can increment its value.

Method Signature

Incrementing Table Values

Get a Table Value

Using a table name and key, you can fetch a value.

Method Signature

Getting a Table Value

Getting Multiple Table Values

Using a table name and an array of keys, you can fetch multiple values.

Method Signature

Getting Multiple Table Values

Scan Table Values

By providing a pattern you can scan a table, starting at a specified cursor.

Method Signature

Scanning Table Values

Getting All Table Values

Using a table name, you can fetch all the stored values.

Method Signature

Getting All Table Values

Get a Table

Using a table name, you can fetch the entire table.

Method Signature

Getting a Table

Get a Table's Length

Using a table name, you can fetch the length of the table.

Method Signature

Getting a Table's Length

Check a Table Key Exists

Using a table name and key, you can check if a key exists on a table.

Method Signature

Checking a Table Key Exists

Delete Table Values

Using a table name and a list of keys, you can delete a values.

Method Signature

Deleting Table Values

Delete a Table

Using a table name, you can delete the whole table.

Method Signature

Deleting a Table