1 |
If you have a client side program, then you need to know an API to it which allows one to get and set all the properties (or events which are change of properties)
|
2 |
Most elegant interface is a TangoBean which implements shared Javabeans
-
A Javabean is a Java applet/application which has well defined visual and programmatic interface to its properties -- "design rules"
|
3 |
In any case, you choose events to be shared; meaning of master/slave relationship (if any) and consequence of sharing on disparate machines
-
e.g. in shared physics simulation, one could share positions of particles or just start/stop commands
-
Then slower machines simulate less .....
|