Skip to content

Commit

Permalink
Initial cells docu
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Mar 14, 2024
1 parent 8b9fb33 commit cbed2f0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
22 changes: 22 additions & 0 deletions modules/cells/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Cell

This module is responsible for inner-cell communication.


## Celle messages

```mermaid
sequenceDiagram
participant Cell 'A'
create participant cellEndpoint
Cell 'A' ->>+cellEndpoint: send(message) to 'B'
create participant CellMessageDispatcher
cellEndpoint ->>+CellMessageDispatcher:message
CellMessageDispatcher ->>+CellMessageDispatcher:find receiver
participant Cell 'B'
CellMessageDispatcher ->>+Cell 'B': messageArrived(message) from 'A'
```
1 change: 0 additions & 1 deletion modules/cells/readme

This file was deleted.

0 comments on commit cbed2f0

Please sign in to comment.