You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development/frontend/architecture.mdx
+2-20Lines changed: 2 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -268,27 +268,9 @@ User Interaction → View → Service → API
268
268
269
269
### Event-Driven Updates
270
270
271
-
The application uses an **event bus** for cross-component communication without direct coupling.
271
+
The application uses an **event bus** for cross-component communication without direct coupling. This enables real-time updates across unrelated components, cache invalidation signals, global notifications, and feature-to-feature communication.
272
272
273
-
Read more about the global event bus in the [Event Bus Documentation](/development/frontend/event-bus).
274
-
275
-
#### Event Bus Usage
276
-
277
-
- Real-time updates across unrelated components
278
-
- Cache invalidation signals
279
-
- Global notifications
280
-
- Feature-to-feature communication
281
-
282
-
#### Event Naming Convention
283
-
284
-
```
285
-
{feature}-{action}
286
-
```
287
-
288
-
Examples:
289
-
-`teams-updated`
290
-
-`credential-deleted`
291
-
-`mcp-server-deployed`
273
+
For complete details on the event bus system, including usage patterns, naming conventions, and implementation examples, see the [Event Bus Documentation](/development/frontend/event-bus).
0 commit comments