rpc_00
This article describes the data/samples/syncker/rpc_00.cpp sample.
The rpc_00 sample demonstrates how to:
- Call a remote procedure on all slaves from the world script running on the master side.
- Operate with a value received from the remote procedure.
You need to open the console on the master and slave computers to see the sample output.
Press the grave accent (`) key placed under the ESC key to call the console.
Remote procedure call (RPC) is initiated by the master, which tells the slaves to execute the specified procedure. The remote procedure call usually requires when some event (e.g. calculation) occurs on the master and you need to tell the slaves what to render according to this event.
The remote procedure is defined in the world script running on the slave side. It prints the received value in the console and returns the hello from slave string.
int rpc_function(int value) {
log.message("Argument from master: %s\n",typeinfo(value));
return "hello from slave";
}
In the master world script, the hello from master string is passed to the procedure.
Unigine::Syncker::Master::worldCall(~0,"rpc_function",("hello from master"),ret);
Argument from master: string: "hello from master"
Result from "xxx.xxx.xxx.xxx": string: "hello from slave"
See Also
- How to run Syncker samples
- Article on Syncker
- Unigine::Syncker::Master functions
Last update: 03.07.2017
Помогите сделать статью лучше
Была ли эта статья полезной?
(или выберите слово/фразу и нажмите Ctrl+Enter