RPC json 2.0 API
- server simple: ./examples/simple/server.py
- client simple: ./examples/simple/client.py
- server rpc: ./examples/rpc/server.py
- client rpc: ./examples/rpc/client.py
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
. ./enable_develop_path.sh
make install
Segmented binary chunk
Prot | connection string |
---|---|
Domain Socket | unix:./uds_test_rpc |
TCP/IP | tcp://127.0.0.1:5151 |
- ServiceObject.py
- SocketFactory.py (SocketFactoryServer)
- ServiceServer.py
- RPC_Response.py (json protocol 2.0 call)
- ServiceBus.py
- SocketFactory.py (SocketFactoryClient)
- ConnectionControl.py
- ConnectionData.py
- ProxyObject.py
- RPC_Call.py (json protocol 2.0 execute)