Register a function
Inside a worker,worker.registerFunction(id, handler) makes a function callable from anywhere in
the iii system. The id follows the service::name form; the handler receives the call’s payload
and returns the result.
- Node / TypeScript
- Python
- Rust
Triggering (Invoking) functions
A function runs when a trigger fires. The same function can be invoked from many trigger types at once: direct CLI calls (iii trigger), in-process SDK calls (worker.trigger), or bindings to
event-source workers like iii-http, iii-cron, iii-queue, iii-state, and iii-stream. All paths leave
the handler unchanged.
The two most common ways to invoke a function directly are from worker code with worker.trigger or
from the terminal with the command iii trigger. The engine routes the call to whatever worker
registered the function; no trigger registration is involved. The action field controls delivery:
by default the call waits for the function to return its result, or for the configured timeout to
fire. Pass a different TriggerAction to change that.
- Node / TypeScript
- Python
- Rust
- CLI
- Default (synchronous). No
actionset. The call waits for the function to return its result or for the configured timeout to fire. TriggerAction.Void(). Fire-and-forget. The call returns immediately; the function still runs but the caller doesn’t see the result.TriggerAction.Enqueue({ queue }). Provided by iii-queue. Routes the invocation through a named queue with retries; the call returns once the message is enqueued.
Functions can also be registered (or bound) to Triggers such as an
http request, a cron
schedule, a state change, and so on. To bind a function to an event source, see Triggers /
Register a trigger.Workers can provide their own
TriggerActions. Check each worker’s
documentation for the action types it offers.In Python, every blocking method has an awaitable twin (
trigger_async, shutdown_async,
create_channel_async) for use inside asyncio. See the Python SDK
reference.Trigger functions from the CLI
iii trigger is a useful development tool. Pass --help to any function to see its arguments and a
description of what it does:
iii trigger runs through the exact same code paths as the rest of the system, you can do
real work straight from the terminal: figure out what a function does, apply database modifications,
make state changes, or try any other manipulation or new code interactively. That makes it a useful
tool for development and debugging.
Request and response formats are what make
iii trigger --help work. Functions can carry JSON
Schemas for their request payload and response shape. For how to create these schemas when
registering a function, see Creating Workers /
Functions.Common functions
A handful of functions ship with the iii engine and the standard workers. You’ll likely call them from almost every iii project. They look like any function you’d register yourself and are invoked the same way (viaiii trigger or worker.trigger). The
only thing special about them is that you didn’t have to register them.
Engine functions (engine::*)
The engine itself registers a small set of introspection and lifecycle functions. Full request and
response schemas are in the
engine protocol reference.
| Function | What it does |
|---|---|
engine::functions::list | List every registered function. Pass { include_internal: true } to include engine internals. |
engine::workers::list | List every connected worker with its metrics. Pass { worker_id: "<uuid>" } to look one up. |
engine::triggers::list | List every registered trigger binding. |
engine::channels::create | Allocate a streaming channel reader / writer pair. The SDK wraps this as worker.createChannel(); rarely called directly. |
engine::workers::register | Publish the calling worker’s metadata (runtime, version, OS, PID, optional description). The SDK calls this automatically on connect. |
| Trigger | Fires when |
|---|---|
engine::functions-available | A function is registered or unregistered. |
engine::workers-available | A worker connects or disconnects. |
Common workers
Each of these is published by a separate worker. Function ids, payload shapes, and per-function behaviour are in the worker’s own docs at workers.iii.dev:- State: KV-style state with scoped namespaces and reactive triggers on create/update/delete. See iii-state.
- Stream: Real-time push to connected clients over WebSocket. See iii-stream.
- Queue: Durable, ordered job processing with retries, concurrency limits, and a dead-letter queue. See iii-queue.
- Pub/Sub: Lightweight in-engine topic subscription for fan-out without durability guarantees. See iii-pubsub.
- Observability: Traces, logs, metrics, alerts, sampling rules, and rollups. See iii-observability.