summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-06-05 13:55:20 -0600
committert <t@tjp.lol>2026-06-05 14:50:42 -0600
commit73645129a9de90f867908d35e77c9252bae4e534 (patch)
tree90b6cb5f5ec4082a2bc0029de5b6647b7ff4f951 /docs
parent6dbde15c1a08906f26443311a0d5fbd84d0523f0 (diff)
refactor: Agent.run() -> Stream -> Stream.next() -> Event
converted the main agent loop from push-based (into callbacks on a Receiver vtable) to pull-based, where `next()` re-enters a state-machine Stream until the next event can be returned.
Diffstat (limited to 'docs')
-rw-r--r--docs/libpanto-bindings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libpanto-bindings.md b/docs/libpanto-bindings.md
index 9b9ef2c..3c1a355 100644
--- a/docs/libpanto-bindings.md
+++ b/docs/libpanto-bindings.md
@@ -183,7 +183,7 @@ for v1.
---
-## Phase 0 — internal refactor of `libpanto` to a pull API
+## Phase 0 — internal refactor of `libpanto` to a pull API **(COMPLETE)**
The real work. Everything after this is wrapping.