Slide 15
Slide 15 text
15
Pragmatic Serverless Azure
SPAs, Microservices & gRPC with .NET
ProtoBuf (Protocol Buffers)
§ Language-neutral, platform-neutral, extensible mechanism for
describing & serializing structured data
§ Like XML/XSD, but smaller, faster,
and partly simpler
§ Uses integer tokens to identify members,
not names
§ Support for code generation for many languages, including C#
§ Also: Binary representation on the wire
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
}