Changes between Version 36 and Version 37 of rpc_implementation
- Timestamp:
- Jan 17, 2019, 3:57:12 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
rpc_implementation
v36 v37 71 71 All RPC services defined by ALMOS-MKH can be used in ''simple'' or ''parallel'' mode. 72 72 Only the behavior of the client has to be modified for a parallel RPC : To send parallel RPC requests to several servers, the client thread doe not block until the last request has been registered in the last server FIFO. 73 Therefore, to request a RPC service XYZ in parallel mode to N servers, the client function does NOT use the ''rpc_xyz_client()'' function, and follows the following theclient scenario:73 Therefore, to request a RPC service XYZ in parallel mode to N servers, the client function does NOT use the ''rpc_xyz_client()'' function, and must implement the following client scenario: 74 74 1. allocate itself an array of RPC descriptors rpc[N] in client cluster (one per target server), 75 75 1. allocate itself a shared responses counter in client cluster (can be in client stack),