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...")
(No difference)

Revision as of 09:37, 3 March 2014


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/