iii-state The worker is a server-side key/value store. Values are addressed by a (namespace) and a , shared across every worker connected to the engine, and persisted through a pluggable adapter ( , , or ). Callers reach the store through six functions invoked with . State does not push updates to SDK clients. Reactivity is delivered by a trigger type that fires , , or after every successful mutation, so downstream functions can react to data changes without polling. The adapter (default) supports or persistence; proxies to a Redis backend; forwards operations to a remote iii engine. The func…