Currently clusters communicate via CallTargetCell::OtherRole for synchronous calls. Add an async event notification system so clusters can subscribe to events from other clusters (e.g., identity changes propagating to governance voting weights).
Design should use Holochain signals and the existing bridge-common infrastructure in crates/mycelix-bridge-common/.
Requirements
- Event subscription/unsubscription API
- Event types for each cluster (identity changed, proposal created, vote cast, etc.)
- Delivery guarantees (at-least-once)
- Back-pressure handling for high-frequency events
Currently clusters communicate via
CallTargetCell::OtherRolefor synchronous calls. Add an async event notification system so clusters can subscribe to events from other clusters (e.g., identity changes propagating to governance voting weights).Design should use Holochain signals and the existing bridge-common infrastructure in
crates/mycelix-bridge-common/.Requirements