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.

RPC Protocol

From wiki.openlighting.org

Revision as of 09:37, 3 March 2014 by Nomis52 (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


OLA is a client / server architecture.


Data passed between the client and the server is serialized using Protocol Buffers.


Simple Example

From common/rpc/Rpc.proto,

message RpcMessage {
  required Type type = 1;
  optional uint32 id = 2;
  optional string name = 3;
  optional bytes buffer = 4;
}


common/protocol/