Personal tools
The Open Lighting Project has moved!

We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.

Difference between revisions of "RPC Protocol"

From wiki.openlighting.org

Jump to: navigation, search
(Created page with " OLA is a client / server architecture. Data passed between the client and the server is serialized using [https://developers.google.com/protocol-buffers/ Protocol Buffers...")
 
m (Switch to interwiki links)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
  
  
OLA is a client / server architecture.
+
This page has moved to [[doc:rpc_system|here]].
 
 
 
 
Data passed between the client and the server is serialized using [https://developers.google.com/protocol-buffers/ Protocol Buffers].
 
 
 
 
 
== Simple Example ==
 
 
 
From  <tt>common/rpc/Rpc.proto</tt>,
 
 
 
<pre>
 
message RpcMessage {
 
  required Type type = 1;
 
  optional uint32 id = 2;
 
  optional string name = 3;
 
  optional bytes buffer = 4;
 
}
 
</pre>
 
 
 
 
 
common/protocol/
 

Latest revision as of 07:05, 30 March 2014


This page has moved to here.