Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/airtestproject/hrpc
Common interface definition based rpc implementation
https://github.com/airtestproject/hrpc
rpc rpc-client rpc-framework rpc-library
Last synced: 3 months ago
JSON representation
Common interface definition based rpc implementation
- Host: GitHub
- URL: https://github.com/airtestproject/hrpc
- Owner: AirtestProject
- License: apache-2.0
- Created: 2018-01-24T06:10:10.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-22T08:09:19.000Z (about 3 years ago)
- Last Synced: 2024-10-28T17:22:34.998Z (3 months ago)
- Topics: rpc, rpc-client, rpc-framework, rpc-library
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 22
- Watchers: 14
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hrpc
Common interface definition based rpc implementation (基于公共接口定义的rpc实现).
```text
+-----------------------------+ +------------------------------+
| | | |
| runtime 1 | | runtime 2 |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| +---------------------+ call remote method | +-------------------+
| | objproxy.methodA() | +----------------------------> | | obj.methodA() |
| | | | | |
| | | | | |
| | | | | |
+-------+---------^-----------+ +----------+---------^---------+
| |
| |
| |
+-----------------------------+------------------------------------+
|
|
|
+----------------+----------------+
| |
| CommonInterface |
| |
| |
+---------------------------------+
| |
| + methodA() |
| |
+---------------------------------+
| |
| + methodB(arg1, arg2) |
| |
+---------------------------------+```