Slide 15
Slide 15 text
15
gRPC & Blazor WebAssembly
Ein Traumpaar!?
Protocol Buffers (ProtoBuf)
§ 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) serialization format on the wire
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
}