File tree Expand file tree Collapse file tree 1 file changed +10
-26
lines changed
Expand file tree Collapse file tree 1 file changed +10
-26
lines changed Original file line number Diff line number Diff line change @@ -88,32 +88,16 @@ Places Where RPC is Used
8888
8989## RPC implementation
9090
91- ``` markdown
92- ----------
93- | Client |
94- ----------
95- | ^
96- v |
97- ---------------
98- | Client Stub |
99- ---------------
100- | ^
101- v |
102- ---------------
103- | Network/ |
104- | Transport |
105- ---------------
106- | ^
107- v |
108- ---------------
109- | Server Stub |
110- ---------------
111- | ^
112- v |
113- -----------
114- | Server |
115- -----------
116- ````
91+ ``` mermaid
92+ graph TD
93+ id1(["Client"])
94+ id2["Network/Transport"]
95+ id3(["Server"])
96+ id1 --> |Client Stub| id2
97+ id2 --> |Server Stub| id3
98+ id2 --> |Client Stub| id1
99+ id3 --> |Server Stub| id2
100+ ```
117101
118102> For ease of use, let's use ** Python** .
119103
You can’t perform that action at this time.
0 commit comments