aboutsummaryrefslogtreecommitdiff
path: root/examples/using_union_messages/unionproto.proto
blob: d7c9de2d3b22f8acf140dca2d2ae9b857bc3fba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// This is an example of how to handle 'union' style messages
// with nanopb, without allocating memory for all the message types.
//
// There is no official type in Protocol Buffers for describing unions,
// but they are commonly implemented by filling out exactly one of
// several optional fields.

message MsgType1
{
    required int32 value = 1;
}

message MsgType2
{
    required bool value = 1;
}

message MsgType3
{
    required int32 value1 = 1;
    required int32 value2 = 2;
}

message UnionMessage
{
    optional MsgType1 msg1 = 1;
    optional MsgType2 msg2 = 2;
    optional MsgType3 msg3 = 3;
}