Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanheemstra committed Mar 1, 2025
1 parent d47e4db commit 7659982
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions 300/999/100/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,26 @@ flowchart TB

### Flowlu - Event-Driven Architecture

```mermaid
flowchart LR
MusicApp[Music App Client]
EventBus[Event Bus]
CustomerSvc[Customer Service]
FeedbackSvc[Feedback Service]
AnalyticsSvc[Analytics Service]
NotificationSvc[Notification Service]
MusicApp -->|Publish Events| EventBus
EventBus -->|Customer Events| CustomerSvc
EventBus -->|Feedback Events| FeedbackSvc
EventBus -->|User Activity Events| AnalyticsSvc
EventBus -->|Alert Events| NotificationSvc
CustomerSvc -.->|Publish Domain Events| EventBus
FeedbackSvc -.->|Publish Domain Events| EventBus
AnalyticsSvc -.->|Publish Insight Events| EventBus
```

### ActivePieces - Pipes and Filters Pattern

### Visual Studio Code - Plugin Architecture Pattern
Expand Down

0 comments on commit 7659982

Please sign in to comment.