From 7a96cd0468f71c335dc4fff0b9331a128853df1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6tten?= Date: Fri, 24 Apr 2026 17:03:23 +0200 Subject: [PATCH] Roadmap items added for later implementation --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 5079f16..0e49e91 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,16 @@ Integration tests require Docker. - **Awaitility** — async testing support - **SLF4J / Logback** — logging +## Roadmap + +The following features are not yet implemented but will be added when of interest: + +- **Supervision strategies** — configurable failure handling policies (restart, stop, escalate) for parent-child actor hierarchies +- **Backpressure / bounded mailboxes** — mailbox capacity limits with overflow strategies (e.g. drop, reject) to prevent unbounded memory growth +- **Dead letter handling** — capture and surface messages sent to stopped or non-existent actors for debugging and monitoring +- **Configurable timeouts** — user-defined timeouts for request-response, future piping, and container shutdown +- **Observability** — hooks for metrics (mailbox depth, message throughput, processing latency) and structured diagnostics + ## Contributing Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for branching strategy,