Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions hugo-site/content/build/manual/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,10 @@ fn App() -> Element {
### Connecting to Freenet

River's UI communicates with the kernel through a WebSocket API. See
[River's sync module](https://github.com/freenet/river/tree/main/ui/src/sync) for the complete
implementation pattern.
[River's `freenet_api` module](https://github.com/freenet/river/tree/main/ui/src/components/app/freenet_api)
for the complete implementation pattern: `connection_manager.rs` opens and reconnects the socket,
`freenet_synchronizer.rs` drives the sync loop, `room_synchronizer.rs` maps rooms onto contract
GET/PUT/SUBSCRIBE/UPDATE, and `response_handler/` handles each kind of node response.

---

Expand Down
Loading