From 028a8b11b07e57d2a68c8cde39ac5c5d97646dd5 Mon Sep 17 00:00:00 2001 From: Leynos Date: Fri, 1 Aug 2025 00:14:41 +0100 Subject: [PATCH] Update outbound messaging status --- docs/asynchronous-outbound-messaging-design.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/asynchronous-outbound-messaging-design.md b/docs/asynchronous-outbound-messaging-design.md index 94af1fb6..9ed82047 100644 --- a/docs/asynchronous-outbound-messaging-design.md +++ b/docs/asynchronous-outbound-messaging-design.md @@ -29,11 +29,10 @@ protocols. ### Implementation Status -Only the queue management utilities in `src/push.rs` exist at present. The -connection actor and its write loop are still to be implemented. The remaining -sections describe how to build that actor from first principles using the -biased `select!` loop presented in -[Section 3](#3-core-architecture-the-connection-actor). +An initial connection actor with its biased write loop is implemented in +`src/connection.rs`. The remaining sections explain the rationale behind this +design and possible refinements. See +[Section 3](#3-core-architecture-the-connection-actor) for details. ## 2. Design Goals & Requirements