Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change sequence digram from visio to mermaid #88

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion website/pages/docs/features/components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,35 @@ Otherwise, let's study about the key components of the `TGrid`.


## Communicator
![Sequence Diagram](/images/diagrams/sequence.png)
```mermaid
sequenceDiagram
box Client Application
actor User
participant Driver as Driver<Listener>
participant Connector as Communicator (Client)
end
box Server Application
participant Acceptor as Communicator (Server)
actor Provider
end
User->>Driver: 1. calls a function
Activate User
Activate Driver
Driver->>Connector: 2. delivers the function call
Activate Connector
Deactivate Driver
Connector-->>Acceptor: 3. sends a protocolized<br/>network message<br/>meaning a function call
Deactivate Connector
Activate Acceptor
Acceptor->>Provider: 4. calls the function
Provider->>Acceptor: 5. returns a value
Acceptor-->>Connector: 6. sends a protocolized<br/>network message<br/>meaning a return value
Deactivate Acceptor
Activate Connector
Connector->>User: 7. delivers the return value
Deactivate Connector
Deactivate User
```

Communicates with a remote system.

Expand Down
Binary file removed website/public/images/diagrams/sequence.png
Binary file not shown.