-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
Milestone
Description
Description
Inbox is a legacy feature that is rarely used in modern Akka.NET applications. We should deprecate it in v1.5.x and remove it entirely in v1.6.
Rationale
- Inbox is a blocking, synchronous API that goes against actor model best practices
- Modern alternatives exist: TestKit for testing, regular actors for production
- Low/no usage in the community
- Maintenance burden without clear value
Proposed Plan
- Mark Inbox as
[Obsolete]in v1.5.x with a clear deprecation message - Remove completely in v1.6.0
- Update documentation to guide users to alternatives
Alternatives
For testing: Use TestKit's TestProbe
For production: Use regular actor communication patterns with Ask/Tell
Reactions are currently unavailable